@extends('frontend.layout') @section('pageHeading') @if (!empty($pageHeading)) {{ $pageHeading->contact_page_title ?? 'Contact Us' }} @endif @endsection @section('metaKeywords') @if (!empty($seoInfo)) {{ $seoInfo->meta_keyword_contact }} @endif @endsection @section('metaDescription') @if (!empty($seoInfo)) {{ $seoInfo->meta_description_contact }} @endif @endsection @section('content') @includeIf('frontend.partials.breadcrumb', ['breadcrumb' => $bgImg->breadcrumb, 'title' => $pageHeading->contact_page_title ?? 'Contact Us'])

{{ __('Email Address') }}

{{ !empty($info->email_address) ? $info->email_address : '' }}

{{ __('Location') }}

{{ !empty($info->address) ? $info->address : '' }}

{{ __('Get In Touch') }}

@csrf
@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@error('subject')

{{ $message }}

@enderror
@error('message')

{{ $message }}

@enderror @if ($info->google_recaptcha_status == 1)
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!}
@error('g-recaptcha-response')

{{ $message }}

@enderror @endif
@if (!empty($info->latitude) && !empty($info->longitude))
@endif
@if (!empty(showAd(3)))
{!! showAd(3) !!}
@endif
@endsection