@extends('admin.layouts.app')
@section('title', 'Edit — ' . $country->name)
@section('page-title', 'Edit Country')
@push('styles')
@endpush
@section('content')
{{-- Breadcrumb --}}
@include('admin.countries._form', [
'country' => $country,
'action' => route('admin.countries.update', $country),
'method' => 'PUT',
])
@endsection
@push('scripts')
@include('admin.countries._tinymce')
@endpush