@extends('layouts.frontend') @section('title', 'Contact Us - ' . setting('site_name', config('app.name'))) @section('meta_description', 'Get in touch with us. We are here to help with your inquiries and support needs.') @section('content')

Get in Touch

We'd love to hear from you! Whether you have a question, feedback, or need support, feel free to reach out.

{{-- Contact Information Column --}}

Contact Details

@if($contactEmail) @endif @if($contactPhone) @endif @if($whatsappNumber) @endif {{-- Physical Address --}} @if(setting('contact_address_street') || setting('contact_address_city'))

Our Address

{{ setting('contact_address_street') }}
@if(setting('contact_address_city')){{ setting('contact_address_city') }}@endif @if(setting('contact_address_state')){{ ', ' . setting('contact_address_state') }}@endif @if(setting('contact_address_zip')){{ ' ' . setting('contact_address_zip') }}@endif @if(setting('contact_address_country'))
{{ setting('contact_address_country') }}@endif

@endif
{{-- You can add a map here if you have a physical address setting --}} {{-- Social Media Links --}} @if(setting('social_facebook_url') || setting('social_twitter_url') || setting('social_linkedin_url') || setting('social_instagram_url'))

Follow Us

@if(setting('social_facebook_url'))@endif @if(setting('social_twitter_url'))@endif @if(setting('social_linkedin_url'))@endif @if(setting('social_instagram_url'))@endif {{-- Add more social icons as needed --}}
@endif
{{-- Ticket Submission Form Column --}}

Send us a Message / Support Ticket

@if (session('success')) @endif @if (session('error')) @endif
@csrf
{{-- Pass validation messages for 'name' --}}
{{-- Pass validation messages for 'email' --}}
{{-- Pass validation messages for 'subject' --}}
{{-- Pass validation messages for 'message' --}}
{{-- Pass validation messages for 'priority' --}}
{{ __('Send Message') }}
@endsection