@if(isset($property))
{!! Form::model($property, ['url' => route('property-edit-action', ['id' => $property->id])]) !!}
@else
{!! Form::open(['url' => route('property-create')]) !!}
@endif
{!! Form::label('description') !!}
{!! Form::text('description', null, ['class' => 'form-control']) !!}
{!! Form::label('image_url') !!}
{!! Form::text('image_url', null, ['class' => 'form-control']) !!}
{!! Form::close() !!}