{{ __('messages.tax_rate.edit_tax_rate') }}
{{ Form::open(['id' => 'editForm']) }}
{{ Form::hidden('taxRateId', null, ['id' => 'taxRateId']) }}
{{ Form::label('name',__('messages.common.name').':') }}* {{ Form::text('name', null, ['class' => 'form-control', 'required', 'id' => 'editName','autocomplete' => 'off','placeholder'=>__('messages.common.name')]) }}
{{ Form::label('taxRate', __('messages.tax_rate.tax_rate').'(%):') }}* {{ Form::number('tax_rate', null, ['class' => 'form-control tax-rate', 'id' => 'editTaxRate', 'required', 'min' => '0', 'max' => '100', 'step'=>'any','placeholder'=>__('messages.tax_rate.tax_rate')]) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit', 'class' => 'btn btn-primary', 'id' => 'btnEditSave', 'data-loading-text' => " Processing..."]) }}
{{ Form::close() }}