@extends('layouts.frontend') {{-- Header Meta Section --}} @section('headerMeta') @php $info = !empty($info) ? $info : (!empty($siteInfo) ? $siteInfo : null); $metaTitle = $info->meta_title ?? config('app.name'); $metaDescription = $info->meta_description ?? config('app.name'); $metaKeywords = $info->meta_tag ?? config('app.name'); $metaImage = $info->meta_image ?? 'images/website.png'; @endphp {{ $metaTitle }} @endsection {{-- Content Section --}} @section('content')
@include('layouts.frontend-partial.breadcrumb')
@php $siteInfo = getSiteInfo(); @endphp
{{-- Contact Information Section --}}

Let's Connect

Speak to our friendly team. We're here to help you.

{{-- Chat & Email --}}
{!! config('icons.whatsapp') !!}
Chat With Us
@if (!empty($siteInfo->whatsapp)) Start a Live Chat @else Not Available @endif
{!! config('icons.email') !!}
Email Us
@if (!empty($siteInfo->email)) Shoot Us an Email @else Not Available @endif
{{-- Call & Visit --}}
{!! config('icons.phone') !!}
Call Us

Mon-Fri: 8am-5pm

@if (!empty($siteInfo->mobile)) {{ $siteInfo->mobile }} @else Not Available @endif
{!! config('icons.location') !!}
Visit Us
@if (!empty($siteInfo->location) || !empty($siteInfo->us_location))

Our international offices:

@endif @if (!empty($siteInfo->location)) BD Address: {{ $siteInfo->location }} @endif @if (!empty($siteInfo->us_location)) UK Address: {{ $siteInfo->us_location }} @endif @if (empty($siteInfo->location) && empty($siteInfo->us_location)) Addresses Not Available @endif
{{-- Contact Form Section --}}
@csrf

Ready to get started? Let's chat.

Fill out the form below and we'll get back to you as soon as possible.

{{-- Input Fields --}}
@error('first_name') {{ $message }} @enderror
@error('last_name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('subject') {{ $message }} @enderror
@error('message') {{ $message }} @enderror
{{-- Cloudflare Turnstile & Submit Button --}}
@error('cf-turnstile-response') {{ $message }} @enderror
--- {{-- Map Section --}} @if (!empty($siteInfo->map))

Find Us on the Map

{!! $siteInfo->map !!}
@endif @endsection {{-- Push Scripts and Styles --}} @push('headerPartial') @endpush @push('footerPartial') @endpush