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

@lang( 'lang_v1.edit_customer_group' )

{!! Form::label('name', __( 'lang_v1.customer_group_name' ) . ':*') !!} {!! Form::text('name', $customer_group->name, ['class' => 'form-control', 'required', 'placeholder' => __( 'lang_v1.customer_group_name' )]); !!}
{!! Form::label('amount', __( 'lang_v1.calculation_percentage' ) . ':') !!} @show_tooltip(__('lang_v1.tooltip_calculation_percentage')) {!! Form::number('amount', $customer_group->amount, ['class' => 'form-control','placeholder' => __( 'lang_v1.calculation_percentage'), 'max' => 100, 'min' => '-100', 'step' => 0.1]); !!}
{!! Form::close() !!}