@extends('layouts.public') @section('title', 'Contact Us - ' . config('app.name')) @section('meta_description', 'Contact Shavhani Attorneys. Phone, email, fax, and office hours.') @push('schema') @endpush @section('content')

How to Reach Us

Call or email during office hours (Mon–Fri 08:00–17:00), or send a message using the form. We will respond as soon as we can.

@php $addressStreet = \App\Models\SiteSetting::get('address_street', ''); $addressCity = \App\Models\SiteSetting::get('address_city', ''); $addressProvince = \App\Models\SiteSetting::get('address_province', ''); $addressPostal = \App\Models\SiteSetting::get('address_postal_code', ''); @endphp @if($addressStreet || $addressCity || $addressProvince || $addressPostal)

Address

@if($addressStreet){{ $addressStreet }}
@endif @if($addressCity || $addressProvince || $addressPostal) {{ trim(implode(', ', array_filter([$addressCity, $addressProvince, $addressPostal]))) }} @endif
@endif @php $phonePrimary = \App\Models\SiteSetting::get('phone_primary', ''); $phoneSecondary = \App\Models\SiteSetting::get('phone_secondary', ''); @endphp @if($phonePrimary || $phoneSecondary)

Phone

@if($phonePrimary) {{ $phonePrimary }} @endif @if($phoneSecondary) {{ $phoneSecondary }} @endif
@endif @if(\App\Models\SiteSetting::get('email')) @endif @if(\App\Models\SiteSetting::get('fax'))

Fax

{{ \App\Models\SiteSetting::get('fax') }}

@endif @if(\App\Models\SiteSetting::get('business_hours'))

Office Hours

{{ \App\Models\SiteSetting::get('business_hours') }}
@endif

Send a Message

Tell us briefly about your enquiry. We aim to respond within one business day.

@csrf
@error('name') @enderror
@error('email') @enderror
@error('phone') @enderror
@error('message') @enderror
@endsection