{!! Form::label('title', __('الشقة').'') !!} {!! html()->text('title', null)->class('form-control')${5:->id('')} !!}
{!! Form::label('title', __('رقم الشقة').'') !!} {!! html()->number('no_of_apartment', null)->class('form-control') !!}
{!! Form::label('title', __('السعر باليوم').'') !!} {!! html()->text('priceperday', null)->class('form-control')${5:->id('')} !!}
{!! Form::label('title', __('وصف الشقة ').'') !!} {!! html()->text('description', null)->class('form-control')${5:->id('')} !!}
{!! Form::label('title', __('العدد المسموح').'') !!} {!! html()->number('no_of_guest', null)->class('form-control') !!}
{!! Form::label('title', __('is_similar_apartment').'') !!} {!! html()->number('is_similar_apartment', null)->class('form-control') !!}
{!! Form::label('title', __('وقت الدخول') . ':') !!} {!! Form::time('check_in_time', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('وقت الخروج') . ':') !!} {!! Form::time('check_out_time', old('check_out_time', $tblPropertyApartment->check_out_time ?? null), ['class' => 'form-control']) !!}
{!! Form::label('title', __(' قيمة العربون').'') !!} {!! html()->text('deposit_price', null)->class('form-control')${5:->id('')} !!}
{!! Form::label('title', __('حالة النشر') . ':') !!}
{!! Form::radio('active', 1, true, ['id' => 'active_yes']) !!} {!! html()->label('active', 'active_yes') !!}
{!! Form::radio('active', 0, false, ['id' => 'active_no']) !!} {!! html()->label('Inactive', 'active_no') !!}
{!! Form::hidden('created_on', date('Y-m-d H:i:s'), ['class' => 'form-control']) !!}
{!! Form::hidden('building_id', $tblPropertyApartment->building_id, ['class' => 'form-control']) !!}
{!! Form::hidden('created_by_id', Auth::user()->id, ['class' => 'form-control']) !!}