{!! Form::open(['url' => action([\App\Http\Controllers\TaxRateController::class, 'store']), 'method' => 'post', 'id' => 'tax_rate_add_form' ]) !!}
{!! Form::label('name', __( 'tax_rate.name' ) . ':*') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' => __( 'tax_rate.name' )]); !!}
{!! Form::label('amount', __( 'tax_rate.rate' ) . ':*') !!} @show_tooltip(__('lang_v1.tax_exempt_help'))
{!! Form::text('amount', null, ['class' => 'form-control input_number', 'required']); !!}