@extends('theme::layout') @section('title', 'Contact Us') @section('content') @include('theme::_hero_banner', [ 'heroTitle' => 'Contact Us', 'heroSubtitle' => 'We\'d love to hear from you — get in touch with our parish', 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('web.home')], ['label' => 'Contact Us'], ], ]) @if($topwidget->isNotEmpty())
@foreach($topwidget as $widget) {!! $widget->content !!} @endforeach
@endif
@if($_church)
@if($_church->address)

📍 {{ $_church->address }}

@endif
@endif @if(session('success'))
✓ {{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(config('settings.contact_captcha_status')=="1") @error('g-recaptcha-response')

{{ $message }}

@enderror @endif
{{-- max-w-lg --}}
{{-- max-w-6xl --}} @if($bottomwidget->isNotEmpty())
@foreach($bottomwidget as $widget) {!! $widget->content !!} @endforeach
@endif @endsection @push('scripts') @php //dd(config('settings.contact_captcha_status')); $recaptchaKey = env('GOOGLE_RECAPTCHA_KEY', ''); @endphp @if($recaptchaKey && config('settings.contact_captcha_status')=="1") @endif @endpush