@extends('frontend.layouts.app') @section('contents') @php $contactSection = \App\Models\ContactSectionSetting::first(); @endphp
@if($contactSection?->map_url)
@endif
@if($contactSection?->title_one)

{{ $contactSection?->title_one }}

{{ $contactSection?->address_one ?? 'N/A' }}

Phone: {{ $contactSection?->phone_one ?? 'N/A' }}

Email: {{ $contactSection?->email_one ?? 'N/A' }}

@endif @if($contactSection?->title_two)

{{ $contactSection?->title_two}}

{{ $contactSection?->address_two?? 'N/A' }}

Phone: {{ $contactSection?->phone_two ?? 'N/A' }}

Email: {{ $contactSection?->email_two ?? 'N/A' }}

@endif @if($contactSection?->title_three)

{{ $contactSection?->title_three}}

{{ $contactSection?->address_three ?? 'N/A' }}

Phone: {{ $contactSection?->phone_three ?? 'N/A' }}

Email: {{ $contactSection?->email_three ?? 'N/A' }}

@endif
Contact form

Drop Us a Line

Your email address will not be published. Required fields are marked *

@csrf

@endsection