{!! 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']) !!}
--}}
{!! Form::label('business_type', Lang::get('property.business_type')) !!} :
{!! Form::select('business_type', $business_types,null, ['class' => 'form-control','placeholder'=>Lang::get('general.please_select')]) !!}
@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()"]) !!}
{!! Form::label('building_area', Lang::get('property.building_area')) !!} :
{!! Form::text('building_area', null, ['class' => 'form-control',"maxlength"=>"20",'onkeypress' => 'return isNumberKey(event)', '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::label('no_of_buildings', Lang::get('property.no_of_buildings')) !!} :
{!! Form::number('no_of_buildings', null, ['class' => 'form-control',"maxlength"=>"20"]) !!}