{!! Form::open(['url' => action('CustomerGroupController@store'), 'method' => 'post', 'id' => 'customer_group_add_form' ]) !!}
{!! Form::label('name', __( 'lang_v1.customer_group_name' ) . ':*') !!}
{!! Form::text('name', null, ['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', null, ['class' => 'form-control','placeholder' => __( 'lang_v1.calculation_percentage'), 'max' => 100, 'min' => '-100', 'step' => 0.1]); !!}