@extends('layouts.public') @section('title', __('Contact Us')) @section('meta_description', __('Office locations, contact details and the inquiry form for ABACO INFRA.')) @section('content')
@if (session('success')) {{ session('success') }} @endif

{{ __('Send us a message') }}

{{ __('We respond to enquiries within two working days.') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @include('public.partials.honeypot', ['formId' => 'contact']) @include('public.partials.captcha')

{{ __('Our offices') }}

@if ($offices->isEmpty()) @else
@foreach ($offices as $office)
$office->is_primary]) data-reveal-child>

{{ $office->typeLabel() }}

{{ $office->name }}

{{ $office->fullAddress() }}

@if ($office->phone) {{ $office->phone }} @endif @if ($office->email) {{ $office->email }} @endif
@endforeach
@endif
@if ($embed = ($primaryOffice?->map_embed ?: setting('contact_map_embed', config('services.google_maps.embed_url')))) @else

{{ __('Add a Google Maps embed URL in Settings → Contact to display the map here.') }}

@endif

{{ __('Have a complaint or feedback about our services?') }} {{ __('Use the grievance form') }} .

@endsection