@section('site_title', formatTitle([__('Edit'), __('Tax rate'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['url' => route('admin.tax_rates'), 'title' => __('Tax rates')], ['title' => __('Edit')], ]])

{{ __('Edit') }}

{{ __('Tax rate') }} @if($taxRate->trashed()) {{ __('Disabled') }} @endif
@include('admin.tax-rates.partials.menu')
@include('shared.message')
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('regions')) {{ $errors->first('regions') }} @endif {{ __('Leave empty to apply the tax rate on all regions.') }}
%
@if ($errors->has('percentage')) {{ $errors->first('percentage') }} @endif
@if ($errors->has('type')) {{ $errors->first('type') }} @endif