{!! Form::label('name', __('models/amenities.fields.name').':') !!} {!! Form::text('name', null, ['class' => 'form-control', 'required', 'minlength' => 3, 'maxlength' => 100]) !!}
{!! Form::label('photo', __('models/amenities.fields.photo').':') !!}
{!! Form::file('photo', ['class' => 'custom-file-input']) !!} {!! Form::label('photo', 'Choose file', ['class' => 'custom-file-label']) !!}
{!! Form::hidden('is_active', 0) !!} {!! Form::checkbox('is_active', 1, null, ['id'=>'is_active','class' => 'custom-control-input']) !!} {!! Form::label('is_active', __('models/amenities.fields.is_active').':', ['class' => 'custom-control-label']) !!}