@extends('layouts.site') @section('title', $page->meta_title ?: $page->title) @section('meta_description', $page->meta_description ?? 'Contact Hillcrest Living for referrals, enquiries, and directions.') @section('content') @php $branches = collect($siteSettings->contact_branches ?? []) ->filter(fn ($branch) => filled($branch['name'] ?? null) && filled($branch['address'] ?? null)) ->values(); $primaryBranch = $branches->first(fn ($branch) => (bool) ($branch['is_primary'] ?? false)) ?? $branches->first(); $turnstileEnabled = (bool) config('hillcrest.turnstile.enabled') && filled(config('hillcrest.turnstile.site_key')) && filled(config('hillcrest.turnstile.secret_key')); @endphp

Contact Us

Ready to discuss supported living, referrals, or partnership opportunities? Our team will guide you through the right next step.

@if(filled($primaryBranch['phone'] ?? null) || filled($siteSettings->contact_phone))

Phone

{{ $primaryBranch['phone'] ?? $siteSettings->contact_phone }}

@endif @if(filled($primaryBranch['email'] ?? null) || filled($siteSettings->contact_email))

Email

{{ $primaryBranch['email'] ?? $siteSettings->contact_email }}

@endif
@if($branches->isNotEmpty())

Our locations

Interactive map for selected branch
@elseif(filled($siteSettings->contact_map_embed_url))

Location

@if(filled($siteSettings->contact_map_place_label))

{{ $siteSettings->contact_map_place_label }}

@endif @if(filled($primaryBranch['address'] ?? null) || filled($siteSettings->contact_address))

{{ $primaryBranch['address'] ?? $siteSettings->contact_address }}

@endif @else

A map embed can be added from the admin panel under Site settings.

@endif

Send us a message

Use this form for enquiries, support requests, referrals, and service interest.

@if(session('status'))
{{ session('status') }}
@else @if ($errors->any()) @endif
@csrf @honeypot

Please avoid adding multiple links. Messages with excessive links may be blocked as spam.

@if($turnstileEnabled)
@error('cf-turnstile-response')

{{ $message }}

@enderror
@endif
@endif
@endsection @if($turnstileEnabled) @push('scripts') @endpush @endif