@extends('admin.layouts.app') @section('title', 'Contact Page Management') @section('content')

Contact Page Management

Edit Contact Page
Contact Page Sections
@if($contactSections->count() > 0)
@foreach($contactSections as $section) @endforeach
Section Title Status Last Updated Actions
{{ ucfirst(str_replace('_', ' ', $section->section_key)) }} {{ $section->title ?? 'No title set' }} @if($section->is_active) Active @else Inactive @endif {{ $section->updated_at->format('M d, Y H:i') }} Edit
@else
No contact sections found

Start by creating your first contact section.

Create Contact Sections
@endif

{{ $contactSections->where('section_key', 'hero')->count() }}

Hero Section

{{ $contactSections->where('section_key', 'offices')->count() }}

Offices Section

{{ $contactSections->where('section_key', 'quick_contact')->count() }}

Quick Contact

@endsection