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

Edit Contact Page

Back to Overview
@if(session('success')) @endif @if(session('error')) @endif
@csrf @method('PUT')
Hero Section
@error('hero_title')
{{ $message }}
@enderror
@error('hero_content')
{{ $message }}
@enderror
Global Offices Section
@error('offices_title')
{{ $message }}
@enderror
@error('offices_content')
{{ $message }}
@enderror
@if($officesSection && isset($officesSection->data['offices']))
Current Offices:
@foreach($officesSection->data['offices'] as $index => $office)
{{ $office['city'] }}, {{ $office['country'] }}

{{ $office['address'] }}

{{ $office['phone'] }}

{{ $office['email'] }}

{{ $office['hours'] }}

@endforeach
@endif
Quick Contact Section
@error('quick_contact_title')
{{ $message }}
@enderror
@error('quick_contact_content')
{{ $message }}
@enderror
@endsection @push('scripts') @endpush