{{Lang::get('property.create_new_litigation')}}


{!! Form::open(['route' => 'admin.propertyLitigation.store','id' => 'litigation-form']) !!}
{!! Form::label('litigation_start_date', Lang::get('property.litigation_start_date')) !!}: {!! Form::date('litigation_start_date', null, ['class' => 'form-control','required' => 'ture']) !!}
{!! Form::label('litigation_type', Lang::get('property.litigation_type')) !!} : {!! Form::select('litigation_type', $litigation_types, null, ['class' => 'form-control','required' => 'ture']) !!}
{!! Form::label('court_case_description', Lang::get('property.court_case_description')) !!} : {!! Form::text('court_case_description', null, ['class' => 'form-control','required' => 'ture']) !!}
{!! Form::label('comments', Lang::get('property.comments')) !!} : {!! Form::textarea('comments', null, ['class' => 'form-control']) !!}
{!! Form::submit(Lang::get('general.save'), ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}