{!! Form::open(['url' => action([\Modules\Hms\Http\Controllers\UnavailableController::class, 'store']), 'method' => 'post', 'id' => 'add_unavailable' ]) !!}

@lang( 'hms::lang.add_unavailable' )

{!! Form::label('rooms', __('hms::lang.rooms'). '*') !!}
{!! Form::select('rooms[]', $rooms, '', [ 'class' => 'form-control select2', 'required', 'style' => 'width:100%' 'multiple', ]) !!}
{!! Form::label('date_from', __('hms::lang.date_from') . '*') !!} {!! Form::text('date_from', null, [ 'class' => 'form-control', 'readonly', 'required', ]) !!}
{!! Form::label('date_to', __('hms::lang.date_to') . '*') !!} {!! Form::text('date_to', null, [ 'class' => 'form-control datepicker', 'required', 'readonly', ]) !!}
{!! Form::label('unavailable_type', __('hms::lang.unavailable_type'). '*') !!}
{!! Form::select('unavailable_type', $types, '', [ 'class' => 'form-control', 'required', 'placeholder' => __('hms::lang.unavailable_type') ]) !!}
{!! Form::close() !!}