@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.application.title_singular') }}
@method('POST') @csrf
@if($errors->has('user'))
{{ $errors->first('user') }}
@endif {{ trans('cruds.application.fields.user_helper') }}
@if($errors->has('property'))
{{ $errors->first('property') }}
@endif {{ trans('cruds.application.fields.property_helper') }}
@if($errors->has('unit'))
{{ $errors->first('unit') }}
@endif {{ trans('cruds.application.fields.unit_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.application.fields.name_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.application.fields.email_helper') }}
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif {{ trans('cruds.application.fields.phone_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.application.fields.status_helper') }}
@endsection