{!! Form::open(['url' => action('RoomController@update', $room->id), 'method' => 'PUT', 'id' => 'room_edit_form' , 'files' => true]) !!}
{!! 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('review', __('Review') . ':') !!}
{!! Form::number('review', $room->review, ['class' => 'form-input', 'max' => '5']); !!}