{!! Form::label('title', __('اسم العمارة').'') !!} {!! html()->text('title', null)->class('form-control')${5:->id('')} !!}
{!! Form::label('tbl_city_id', __(' المدينة')) !!} {!! Form::select('tbl_city_id', $cities->pluck('name', 'id'), null, ['class' => 'form-control', 'id' => 'citySelect', 'placeholder' => 'Select a city']) !!}
{!! Form::label('tbl_zone_id', __(' المنطقة')) !!} {!! Form::select('tbl_zone_id', $zones,null, ['class' => 'form-control', 'id' => 'zoneSelect', 'placeholder' => 'Select a zone']) !!}
{!! Form::label('title', __('عدد الشقق').'') !!} {!! html()->text('numberofapartment', null)->class('form-control')${5:->id('')} !!}
{!! Form::label('title', __('خط الطول').'') !!} {!! html()->text('latitude', null)->class('form-control')${5:->id('')} !!}
{!! Form::label('title', __('خط العرض').'') !!} {!! html()->text('longitude', null)->class('form-control')${5:->id('')} !!}
{!! Form::label('title', __('host_token').'') !!} {!! html()->text('host_token', null)->class('form-control')${5:->id('')} !!}
{!! Form::label('state_id', __('حالة النشر') . ':') !!}
{!! Form::radio('state_id', 1, true, ['id' => 'state_id_yes']) !!} {!! html()->label('active', 'active_yes') !!}
{!! Form::radio('state_id', 0, false, ['id' => 'state_id_no']) !!} {!! html()->label('Inactive', 'state_id_no') !!}
{!! Form::hidden('created_on', date('Y-m-d H:i:s'), ['class' => 'form-control']) !!}
{!! Form::hidden('created_by_id', $usersHost, null, ['class' => 'select2 form-control ']) !!}