{!! Form::label('title', __('الشقة').'') !!} {!! Form::text('title', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('رقم الشقة').'') !!} {!! Form::number('no_of_apartment', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('السعر باليوم').'') !!} {!! Form::text('priceperday', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('وصف الشقة ').'') !!} {!! Form::text('description', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('العدد المسموح').'') !!} {!! Form::number('no_of_guest', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('is_similar_apartment').'') !!} {!! Form::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', __(' قيمة العربون').'') !!} {!! Form::text('deposit_price', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('حالة النشر') . ':') !!}
{!! Form::radio('active', 1, true, ['id' => 'active_yes']) !!} {!! Form::label('active_yes', 'active', ['class' => 'text-green']) !!}
{!! Form::radio('active', 0, false, ['id' => 'active_no']) !!} {!! Form::label('active_no', 'Inactive', ['class' => 'text-red']) !!}
{!! 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']) !!}