{!! Form::text('title')
-> label(trans('property::property.label.title'))
-> placeholder(trans('property::property.placeholder.title'))!!}
{!! Form::numeric('district_id')
-> label(trans('property::property.label.district_id'))
-> placeholder(trans('property::property.placeholder.district_id'))!!}
{!! Form::numeric('city_id')
-> label(trans('property::property.label.city_id'))
-> placeholder(trans('property::property.placeholder.city_id'))!!}
{!! Form::numeric('type_id')
-> label(trans('property::property.label.type_id'))
-> placeholder(trans('property::property.placeholder.type_id'))!!}
{!! Form::text('description')
-> label(trans('property::property.label.description'))
-> placeholder(trans('property::property.placeholder.description'))!!}
{!! Form::inline_radios('property_for')
-> radios(trans('property::property.options.property_for'))
-> label(trans('property::property.label.property_for'))!!}
{!! Form::decimal('area')
-> label(trans('property::property.label.area'))
-> placeholder(trans('property::property.placeholder.area'))!!}
{!! Form::numeric('bedrooms')
-> label(trans('property::property.label.bedrooms'))
-> placeholder(trans('property::property.placeholder.bedrooms'))!!}
{!! Form::numeric('bathrooms')
-> label(trans('property::property.label.bathrooms'))
-> placeholder(trans('property::property.placeholder.bathrooms'))!!}
{!! Form::numeric('build_at')
-> label(trans('property::property.label.build_at'))
-> placeholder(trans('property::property.placeholder.build_at'))!!}
{!! Form::numeric('price')
-> label(trans('property::property.label.price'))
-> placeholder(trans('property::property.placeholder.price'))!!}
{!! Form::text('images')
-> label(trans('property::property.label.images'))
-> placeholder(trans('property::property.placeholder.images'))!!}
{!! Form::inline_radios('status')
-> radios(trans('property::property.options.status'))
-> label(trans('property::property.label.status'))!!}