{!! $propety['id'] !!}
{!! $propety['propety_name'] !!}
{!! $propety['propety_price'] !!}
{!! $propety['propety_location'] !!}
{!! $propety['propety_description'] !!}
{!! $propety['images'] !!}
{!! $propety['condition'] !!}
{!! $propety['amenities'] !!}
{!! Form::text('propety_name')
-> label(trans('real_estate1.0::propety.label.propety_name'))
-> required()
-> placeholder(trans('real_estate1.0::propety.placeholder.propety_name'))!!}
{!! Form::text('propety_price')
-> label(trans('real_estate1.0::propety.label.propety_price'))
-> required()
-> placeholder(trans('real_estate1.0::propety.placeholder.propety_price'))!!}
{!! Form::text('propety_location')
-> label(trans('real_estate1.0::propety.label.propety_location'))
-> placeholder(trans('real_estate1.0::propety.placeholder.propety_location'))!!}
{!! Form::textarea ('propety_description')
-> label(trans('real_estate1.0::propety.label.propety_description'))
-> placeholder(trans('real_estate1.0::propety.placeholder.propety_description'))!!}
{!! Form::select('condition')
-> fromQuery(\Marius\RealEstate1.0\Models\Propety::all(), 'name', 'id')
-> label(trans('real_estate1.0::propety.label.condition'))
-> placeholder(trans('real_estate1.0::propety.placeholder.condition'))!!}
{!! Form::select('amenities')
-> fromQuery(\Marius\RealEstate1.0\Models\Propety::all(), 'name', 'id')
-> label(trans('real_estate1.0::propety.label.amenities'))
-> placeholder(trans('real_estate1.0::propety.placeholder.amenities'))!!}