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

Edit Method

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