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