{{ Form::select('ware_id', $repository->ware_houses(), null,['class'=>'form-control','id'=>'warehouse_id','required','placeholder'=>'Select Hotel'] )}} @error('ware_id') {{ $message }} @enderror
{{ Form::select('room_type_id', $repository->room_types(), null,['class'=>'form-control','id'=>'room_type','required','placeholder'=>'Select Room Type'] )}} @error('room_type_id') {{ $message }} @enderror
@if(isset($room_rate)) {{ Form::text('start_date',carbon()->parse($room_rate->start_date)->format('d-m-Y'),['class'=>'form-control fd_bs_datepicker','id'=>'start_date','required'] )}} @else {{ Form::text('start_date',null,['class'=>'form-control fd_bs_datepicker','id'=>'start_date','required'] )}} @endif @error('start_date') {{ $message }} @enderror
@if(isset($room_rate)) {{ Form::text('end_date', carbon()->parse($room_rate->end_date)->format('d-m-Y'),['class'=>'form-control fd_bs_datepicker','id'=>'end_date','required'] )}} @else {{ Form::text('end_date',null,['class'=>'form-control fd_bs_datepicker','id'=>'end_date','required'] )}} @endif @error('end_date') {{ $message }} @enderror
Bed Rate
{{ Form::number('week_day_bed_rate',null,['class'=>'form-control','id'=>'week_day_bed_rate','required'] )}} @error('week_day_bed_rate') {{ $message }} @enderror
{{ Form::number('weekend_bed_rate',null,['class'=>'form-control','id'=>'weekend_bed_rate','required'] )}} @error('weekend_bed_rate') {{ $message }} @enderror
Room Rate
{{ Form::number('week_day_room_rate',null,['class'=>'form-control','id'=>'week_day_room_rate','required'] )}} @error('week_day_room_rate') {{ $message }} @enderror
{{ Form::number('weekend_room_rate',null,['class'=>'form-control','id'=>'weekend_room_rate','required'] )}} @error('weekend_room_rate') {{ $message }} @enderror