{!! Form::open(['url' => action('RoomTypeController@store'), 'method' => 'post', 'id' => 'type_add_form' ]) !!}

Add Room Type

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