@extends('admin.layouts.app') @section('title', 'Countries Page CMS') @section('content')

Countries Page CMS

Control all text content of /countries page.

@if($errors->any())
@endif
@csrf @php $heroRaw = old('hero_image', $content['hero']['image'] ?? ''); $heroPreview = $heroRaw ? ((str_starts_with($heroRaw, 'http://') || str_starts_with($heroRaw, 'https://')) ? $heroRaw : asset('storage/' . ltrim($heroRaw, '/'))) : ''; $ctaRaw = old('cta_image', $content['cta']['image'] ?? ''); $ctaPreview = $ctaRaw ? ((str_starts_with($ctaRaw, 'http://') || str_starts_with($ctaRaw, 'https://')) ? $ctaRaw : asset('storage/' . ltrim($ctaRaw, '/'))) : ''; @endphp

SEO

Hero Section

@if($heroPreview) Hero image preview @endif

Country Listing Section

Trust Section

Bottom CTA

@if($ctaPreview) CTA image preview @endif
@endsection