@extends('layouts.admin') @section('page', $page) @section('title', getSetting('APPLICATION_NAME') . ' | ' . $page) @section('content')
@csrf
{{ __('Name') }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ __('Percentage') }}
%
@if ($errors->has('percentage'))
{{ $errors->first('percentage') }}
@endif
{{ __('Type') }}
@foreach ([0 => __('Inclusive'), 1 => __('Exclusive')] as $key => $value)
{{ $value }}
@endforeach
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
{{ __('Regions') }}
@foreach (config('countries') as $key => $value)
{{ __($value) }}
@endforeach
@if ($errors->has('regions'))
{{ $errors->first('regions') }}
@endif
{{ __('Leave empty to apply the tax rate on all regions') }}
{{ __('Save') }}
{{ __('Back') }}
@endsection