{!! Form::open(['url' => action([\App\Http\Controllers\TaxRateController::class, 'update'], [$tax_rate->id]), 'method' => 'PUT', 'id' => 'tax_rate_edit_form' ]) !!}

@lang( 'tax_rate.edit_taxt_rate' )

{!! Form::label('name', __( 'tax_rate.name' ) . ':*') !!} {!! Form::text('name', $tax_rate->name, ['class' => 'form-control', 'required', 'placeholder' => __( 'tax_rate.name' )]); !!}
{!! Form::label('amount', __( 'tax_rate.rate' ) . ':*') !!} @show_tooltip(__('lang_v1.tax_exempt_help')) {!! Form::text('amount', $tax_rate->amount, ['class' => 'form-control input_number', 'required']); !!}
@show_tooltip(__('lang_v1.for_tax_group_only_help'))
{!! Form::close() !!}