@extends('layouts.admin') @section('title', trans('general.title.edit', ['type' => trans_choice('general.tax_rates', 1)])) @section('content')
{!! Form::model($tax, [ 'method' => 'PATCH', 'url' => ['settings/taxes', $tax->id], 'role' => 'form', 'class' => 'form-loading-button' ]) !!}
{{ Form::textGroup('name', trans('general.name'), 'id-card-o') }} {{ Form::textGroup('rate', trans('taxes.rate'), 'percent') }} {{ Form::selectGroup('type', trans_choice('general.types', 1), 'bars', $types, null) }} {{ Form::radioGroup('enabled', trans('general.enabled')) }}
@permission('update-settings-taxes') @endpermission {!! Form::close() !!}
@endsection @push('scripts') @endpush