{!! Form::label('first_name', Lang::get('mof.first_name')) !!} * {!! Form::text('first_name', null, ['class' => 'form-control','required' => 'true']) !!}
{!! Form::label('second_name', Lang::get('mof.second_name')) !!} * {!! Form::text('second_name', null, ['class' => 'form-control','required' => 'true']) !!}
{!! Form::label('third_name', Lang::get('mof.third_name')) !!} {!! Form::text('third_name', null, ['class' => 'form-control']) !!}
{!! Form::label('fourth_name', Lang::get('mof.fourth_name')) !!} {!! Form::text('fourth_name', null, ['class' => 'form-control']) !!}
{!! Form::label('notary_name', Lang::get('mof.notary_office_name')) !!} * {!! Form::text('notary_name', null, ['class' => 'form-control','required' => 'true']) !!}
{!! Form::label('email', Lang::get('mof.email')) !!} * {!! Form::text('email', null, ['class' => 'form-control','required' => 'true']) !!}
{!! Form::label('contact_number', Lang::get('mof.contact_number')) !!} * {!! Form::text('contact_number', null, ['class' => 'form-control','required' => 'true']) !!}
{!! Form::label('address', Lang::get('mof.address')) !!} * {!! Form::text('address', null, ['class' => 'form-control','required' => 'true']) !!}
* :
@if(Route::currentRouteName() == "admin.notaries.edit")
{!! Form::label('city', Lang::get('mof.city')) !!} * : {!! Form::select('city',$cities, null, ['class' => 'form-control','required'=>'true','placeholder' => Lang::get('general.select_value')]) !!}
@else
* :
@endif {{-- District Field --}} @if(Route::currentRouteName() == "admin.notaries.edit")
{!! Form::label('district', Lang::get('property.district')) !!} * : {!! Form::select('district',$districts, null, ['class' => 'form-control','required'=>'true','placeholder' => Lang::get('general.select_value')]) !!}
@else
{!! Form::label('district', Lang::get('property.district')) !!} * :
@endif @if(Route::currentRouteName() == "admin.notaries.edit")
{!! Form::label('sub_division', Lang::get('property.sub_division')) !!} * : @if (Sentinel::inRole('admin') || (Sentinel::hasAccess('admin.properties.subdivision_edit'))) {!! Form::select('sub_division',$sub_divisions, null, ['class' => 'form-control','required'=>'true','placeholder' => Lang::get('general.select_value')]) !!} @else {!! Form::select('sub_division',$sub_divisions, null, ['class' => 'form-control','required'=>'true','placeholder' => Lang::get('general.select_value')]) !!} @endif
@else
{!! Form::label('sub_division', Lang::get('property.sub_division')) !!} * :
@endif
{!! Form::label('notary_number', Lang::get('mof.notary_number')) !!} * {!! Form::text('notary_number', null, ['class' => 'form-control','required' => 'true']) !!}
{!! Form::label('notary_expiry_date', Lang::get('mof.notary_expiry_date')) !!} {!! Form::date('notary_expiry_date', null, ['class' => 'form-control']) !!}
@if(Route::currentRouteName() == "admin.notaries.create")
{!! Form::label('notary_user', Lang::get('mof.available_users')) !!} *
@elseif(Route::currentRouteName() == "admin.notaries.edit")
{!! Form::label('notary_user', 'Available Users:') !!} *
@endif
{!! Form::submit(Lang::get('mof.save') , ['class' => 'btn btn-primary']) !!} @lang('mof.cancel')