{!! Form::label('name', trans('app.form.name').'*') !!} {!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.name'), 'required']) !!}
{!! Form::label('taxrate', trans('app.form.taxrate').'*') !!}
{!! Form::number('taxrate', null, ['class' => 'form-control', 'step' => 'any', 'placeholder' => trans('app.placeholder.tax_rate'), 'required']) !!} %
{!! Form::label('active', trans('app.form.status').'*') !!} {!! Form::select('active', ['1' => trans('app.active'), '0' => trans('app.inactive')], null, ['class' => 'form-control select2-normal', 'placeholder' => trans('app.placeholder.status'), 'required']) !!}
{!! Form::label('country_id', trans('app.form.country').'*') !!} {!! Form::select('country_id', $countries , isset($tax) ? $tax->country_id : config('system_settings.address_default_country'), ['class' => 'form-control select2', 'placeholder' => trans('app.placeholder.country'), 'required']) !!}
{!! Form::label('state_id', trans('app.form.state')) !!} {!! Form::select('state_id', $states , isset($tax) ? $tax->state_id : config('system_settings.address_default_state'), ['class' => 'form-control select2-tag', 'placeholder' => trans('app.placeholder.state')]) !!}

* {{ trans('app.form.required_fields') }}