{!! Form::label('district', Lang::get('property.district')) !!} : {!! Form::select('district',$districts, null, ['class' => 'form-control','required'=>'true','placeholder' => Lang::get('general.select_value')]) !!}
@if(Sentinel::inRole('teller')) {!! Form::label('sub_division', Lang::get('litigation.sub_division')) !!} : @else {!! Form::label('sub_division', Lang::get('property.sub_division')) !!} : @endif
@if((Sentinel::inRole('teller')) || (Sentinel::inRole('court-teller'))) {!! Form::label('address', Lang::get('litigation.address')) !!} : @else {!! Form::label('address', Lang::get('property.address')) !!} : @endif {!! Form::text('address', null, ['class' => 'form-control','required'=>'true']) !!}
@if((Sentinel::inRole('teller')) || (Sentinel::inRole('court-teller'))) {!! Form::label('legacy_file_number', Lang::get('litigation.legacy_file_number')) !!} : @else {!! Form::label('legacy_file_number', Lang::get('property.legacy_file_number')) !!} : @endif {!! Form::text('legacy_file_number', null, ['class' => 'form-control','onkeypress' => 'return isNumberKey(event)']) !!}
@if((Sentinel::inRole('teller')) || (Sentinel::inRole('court-teller'))) {!! Form::label('building', Lang::get('litigation.building')) !!} : @else {!! Form::label('building', Lang::get('property.building')) !!} : @endif {!! Form::select('building', $building,null, ['class' => 'form-control','placeholder'=>Lang::get('general.please_select'),'required'=>'true']) !!}
@if((Sentinel::inRole('teller')) || (Sentinel::inRole('court-teller'))) {!! Form::label('usage', Lang::get('litigation.usage'))!!}: @else {!! Form::label('usage', Lang::get('property.usage')) !!}: @endif {!! Form::select('property_usage', $usages,null, ['class' => 'form-control','placeholder'=>Lang::get('general.please_select'),'required'=>'true','id'=>'property_usage']) !!}
{{--
{!! Form::label('farm', Lang::get('property.farm')) !!}: {!! Form::select('farm_id', $farms,null, ['class' => 'form-control','placeholder'=>Lang::get('general.please_select'),'id'=>'farm']) !!}
--}}
@if((Sentinel::inRole('teller')) || (Sentinel::inRole('court-teller'))) {!! Form::label('size', Lang::get('litigation.size'))!!}: @else {!! Form::label('size', Lang::get('property.size')) !!}: @endif {!! Form::text('size', null, ['class' => 'form-control','required'=>'true', 'onkeyup'=>"validateError()"]) !!}
{!! Form::label('parcel_area_sqm', Lang::get('property.parcel_size')) !!} : {!! Form::number('parcel_area_sqm', null, ['class' => 'form-control','required'=>'true','onkeypress'=>"allowNumbersOnly(event)","maxlength"=>"20", 'onkeyup'=>"validateError()"]) !!}
@if((Sentinel::inRole('teller')) || (Sentinel::inRole('court-teller'))) {!! Form::label('property_wall', Lang::get('litigation.property_wall'))!!}: @else {!! Form::label('property_wall', Lang::get('property.property_wall')) !!}: @endif {!! Form::select('property_wall',$property_wall, null, ['class' => 'form-control','required'=>'true','placeholder' => Lang::get('general.select_value')]) !!}
{!! Form::submit(Lang::get('general.save'), ['class' => 'btn btn-primary']) !!} {{Lang::get('general.cancel')}}