{!! Form::open(['url' => action('RoomController@update', $room->id), 'method' => 'PUT', 'id' => 'room_edit_form' , 'files' => true]) !!}

Edit Room

{!! Form::label('room_type', __('Room Type') . ':*') !!}
{!! Form::label('capacity', __('Capacity') . ':*') !!} {!! Form::number('capacity', $room->capacity, ['class' => 'form-input', 'required']); !!}
{!! Form::label('extra_capacity', __('Extra Capability ') . ':*') !!} {!! Form::select('extra_capacity', ['Yes' => 'Yes', 'No' => 'NO'], $room->extra_capacity, ['class' => 'form-input', 'placeholder' => __('Please Select'), 'required']); !!}
{!! Form::label('rate', __('Rate') . ':*') !!} {!! Form::number('rate', $room->rate, ['class' => 'form-input', 'required']); !!}
{!! Form::label('bed_charge', __('Bed Charge') . ':') !!} {!! Form::number('bed_charge', $room->bed_charge, ['class' => 'form-input']); !!}
{!! Form::label('person_charge', __('Person Charge') . ':') !!} {!! Form::number('person_charge', $room->person_charge, ['class' => 'form-input']); !!}
{!! Form::label('room_size', __('Room Size') . ':') !!}
{!! Form::number('room_size', $room->room_size, ['class' => 'form-input']); !!}
{!! Form::select('room_size_id', $sizes , $room->room_size_id, ['class' => 'form-input', 'placeholder' => __('Please Select')]); !!}
{!! Form::label('bed_no', __('Bed No') . ':') !!}
{!! Form::number('bed_no', $room->bed_no, ['class' => 'form-input']); !!}
{!! Form::select('bed_id', $beds , $room->bed_id, ['class' => 'form-input', 'placeholder' => __('Please Select')]); !!}
{!! Form::label('review', __('Review') . ':') !!} {!! Form::number('review', $room->review, ['class' => 'form-input', 'max' => '5']); !!}
{!! Form::close() !!}