{!! Form::open(['url' => action('DispatchController@update', [$dispatch->id]), 'method' => 'PUT', 'id' => 'dispatch_edit_form' ]) !!}

Edit Method

{!! Form::label('name', __( 'Name' ) . ':*') !!} {!! Form::text('name', $dispatch->name, ['class' => 'form-control', 'required', 'placeholder' => __( 'Name' )]); !!}
{!! Form::label('description', __( 'brand.short_description' ) . ':') !!} {!! Form::text('description', $dispatch->description, ['class' => 'form-control','placeholder' => __( 'brand.short_description' )]); !!}
{!! Form::close() !!}