{!! Form::label('active', __('models/users.fields.active')) !!}
{!! Form::label('isVat', __('Applay Vat on Price.')) !!}
{!! Form::label('vatPercentage', __('Vat Percentage') . ':') !!}
{!! Form::text('vatPercentage', null, ['class' => ($errors->has('vatPercentage')) ? 'form-control is-invalid py-3' : 'form-control py-3', 'disabled' => $isDisabled]) !!}
@if ($errors->has('vatPercentage'))
{{ $errors->first('vatPercentage') }}
@endif
{!! Form::label('allowed_weight', __('Max allowed weight') . ':') !!}
{!! Form::text('allowed_weight', null, ['class' => ($errors->has('allowed_weight')) ? 'form-control is-invalid py-3' : 'form-control py-3', 'disabled' => $isDisabled]) !!}
@if ($errors->has('allowed_weight'))
{{ $errors->first('allowed_weight') }}
@endif
{!! Form::label('isPickup', __('Allow Pickup Requests')) !!}
{!! Form::label('pickupRate', __('Pickup Rate') . ':') !!}
{!! Form::text('pickupRate', null, ['class' => ($errors->has('pickupRate')) ? 'form-control is-invalid py-3' : 'form-control py-3', 'disabled' => $isDisabled]) !!}
@if ($errors->has('pickupRate'))
{{ $errors->first('pickupRate') }}
@endif
{!! Form::label('allow_no_pay_checkout', __('Allow No Pay Checkout')) !!}