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

Edit Complementary

{!! Form::label('room_type', __('Room Type') . ':*') !!}
{!! Form::label('name', __('Complementary') . ':*') !!} {!! Form::text('name', $complementary->name, ['class' => 'form-input', 'required']); !!}
{!! Form::label('rate', __('Rate') . ':*') !!} {!! Form::number('rate', $complementary->rate, ['class' => 'form-input', 'required']); !!}
{!! Form::close() !!}