{!! Form::label('title', __('اسم الشاليه').'') !!} {!! Form::text('title', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('عدد الغرف').'') !!} {!! Form::text('total_room', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('الوصف').'') !!} {!! Form::text('description', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('المساحة بالمتر').'') !!} {!! Form::text('meter_distance', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __(' عدد الأشخاص').'') !!} {!! Form::number('no_of_guest', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __(' نوع الأشخاص ').'') !!} {!! Form::number('type_of_guest', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('رقم الشاليه ').'') !!} {!! Form::number('no_of_chalet', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('وقت الدخول').'') !!} {!! Form::input('datetime-local', 'check_in_time', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('وقت الخروج').'') !!} {!! Form::input('datetime-local', 'check_out_time', null, ['class' => 'form-control']) !!}
{!! Form::label('state_id', __('حالة النشر') . ':') !!}
{!! Form::radio('state_id', 1, true, ['id' => 'state_id_yes']) !!} {!! Form::label('active_yes', 'active', ['class' => 'text-green']) !!}
{!! Form::radio('state_id', 0, false, ['id' => 'state_id_no']) !!} {!! Form::label('state_id_no', 'Inactive', ['class' => 'text-red']) !!}
{!! 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 ']) !!}
{!! Form::hidden('detail_id', $id, ['class' => 'form-control']) !!}