{{ __('messages.tax.edit_tax') }}
{{ Form::open(['id' => 'editForm']) }}
{{ Form::hidden('taxId', null, ['id' => 'taxId']) }}
{{ Form::label('name',__('messages.tax.name').':') }}* {{ Form::text('name', null, ['class' => 'form-control', 'required', 'id' => 'editName' ]) }}
{{ Form::label('tax', __('messages.tax.tax').'(%):') }}* {{ Form::text('tax', null, ['class' => 'form-control tax', 'id' => 'editTax', 'required','maxlength=3','minlength=1']) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit', 'class' => 'btn btn-primary', 'id' => 'btnEditSave', 'data-loading-text' => " Processing..."]) }}
{{ Form::close() }}