@extends('layouts.admin') @section('title', 'Edit Country') @section('content')

Edit Country: {{ $country->name }}

@csrf @method('PUT')
@error('code')
{{ $message }}
@enderror
@error('name')
{{ $message }}
@enderror
@error('region')
{{ $message }}
@enderror
active) ? 'checked' : '' }}>
Cancel
Country Information

Created: {{ $country->created_at->format('M j, Y H:i') }}

Last Updated: {{ $country->updated_at->format('M j, Y H:i') }}

@if($country->dutyOverrides()->exists())
This country has {{ $country->dutyOverrides()->count() }} duty override(s).
@endif
@endsection