@extends('layouts.app') @section('content') @php $status = old('status', $countryTax->status ?? 'active'); @endphp

Edit Country Tax

Update country based tax rate.

@csrf @method('PUT')
@error('country_id')
{{ $message }}
@enderror
@error('tax_name')
{{ $message }}
@enderror
@error('tax_rate')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
Back
@push('scripts') @endpush @endsection