{!! Form::open(['url' => action('RoomTypeController@update', $type->id), 'method' => 'PUT', 'id' => 'type_edit_form' ]) !!}

Edit Room Type

{!! Form::label('name', __('Name') . ':*') !!} {!! Form::text('name', $type->name, ['class' => 'form-input', 'required']); !!}
{!! Form::label('description', __('Description') . ':') !!} {!! Form::text('description', $type->description, ['class' => 'form-input']); !!}
{!! Form::close() !!}