{{-- Country form β€” tab-based layout (like Home CMS) Variables: $country, $action, $method --}}
@csrf @if($method === 'PUT') @method('PUT') @endif @php $sectionDefaults = \App\Models\Country::defaultPageSections($country->name ?? 'this destination'); $sections = array_replace_recursive($sectionDefaults, $country->page_sections ?? []); // Load global subjects pool + current country's selected subject ids $globalSections = \App\Models\CountrySectionsContent::getContent(); $allSubjects = $globalSections['subjects']['items'] ?? []; $countrySlug = $country->slug ?? ''; $selectedSubjects = old('subject_ids', $globalSections['subjects']['country_map'][$countrySlug] ?? [] ); $tabs = [ 'basic' => ['icon' => 'πŸ“‹', 'label' => 'Basic Info'], 'images' => ['icon' => 'πŸ–ΌοΈ', 'label' => 'Images'], 'highlights' => ['icon' => '⭐', 'label' => 'Highlights & Facts'], 'courses' => ['icon' => 'πŸ“š', 'label' => 'Study Areas & Costs'], 'requirements'=> ['icon' => 'βœ…', 'label' => 'Requirements & Roadmap'], 'subjects' => ['icon' => 'πŸŽ“', 'label' => 'Popular Subjects'], 'faq' => ['icon' => '❓', 'label' => 'FAQ & CTA'], 'seo' => ['icon' => 'πŸ”', 'label' => 'SEO'], ]; @endphp {{-- ── Tab Navigation ─────────────────────────────────────── --}}
{{-- Tab header --}}

{{ isset($country->id) ? 'Editing: '.$country->name : 'New Country' }}

Select a tab to edit that section

@if(isset($country->slug)) Preview Page @endif
{{-- Tabs --}}
@foreach($tabs as $key => $tab) @endforeach
{{-- ── TAB: Basic Info ─────────────────────────────────────── --}}
πŸ“‹

Basic Information

Required fields marked with *
{{-- Name --}}
@error('name')

{{ $message }}

@enderror
{{-- Slug --}}
/countries/
@error('slug')

{{ $message }}

@enderror
{{-- Short Description --}}
@error('short_description')

{{ $message }}

@enderror
{{-- Publish --}}
βš™οΈ

Publish Settings

Active / Visible

Show this country on the public website

Lower = shown first

{{-- Rich Content --}}
πŸ“

Detailed Country Guide

Full rich-text content β€” headings, lists, images β€” shown in the "Country Guide" section

@error('content')

{{ $message }}

@enderror
{{-- ── TAB: Images ─────────────────────────────────────────── --}} {{-- ── TAB: Highlights & Quick Facts ───────────────────────── --}} {{-- ── TAB: Study Areas & Costs ─────────────────────────────── --}} {{-- ── TAB: Requirements & Roadmap ─────────────────────────── --}} {{-- ── TAB: Popular Subjects ──────────────────────────────── --}} {{-- ── TAB: FAQ & CTA ───────────────────────────────────────── --}} {{-- ── TAB: SEO ─────────────────────────────────────────────── --}} {{-- ── Sticky Save Bar ──────────────────────────────────────── --}}
Cancel
{{-- ── Tab switching JS ────────────────────────────────────────── --}}