@extends('layouts.shop') @push('schema_markup') @php $contactSchema = \App\Models\SeoSetting::where('page_name', 'contact')->value('schema_markup'); @endphp @if($contactSchema) {!! $contactSchema !!} @endif @endpush @section('content')

Contact Us

Get in touch

We'd love to hear from you. Send us a message and we'll respond as soon as possible.

Contact Information

Have questions about our products or need assistance? We're here to help! Reach out to us through any of the channels below.

Call Us

{{ $settings->phone_support ?? '+91-1234567890' }}

Email Us

{{ $settings->email_support ?? 'sales@hairniche.in' }}

Visit Us

{!! nl2br(e($settings->address_head ?? '123 Lugani Street, City, Country')) !!}

Send us a Message

We usually respond within 24 hours.

@if(session('success'))

Message Sent!

{{ session('success') }}

@endif @if($errors->any())

Errors found

    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if($stores->count() > 0)

Our Store Locations

@foreach($stores as $store)

{{ $store->name }}

{{ $store->address_line1 }}
@if($store->address_line2) {{ $store->address_line2 }}
@endif {{ $store->city }}, {{ $store->state }} {{ $store->postal_code }}
{{ $store->country }}

@if($store->phone)

Phone: {{ $store->phone }}

@endif @if($store->email)

Email: {{ $store->email }}

@endif
@if($store->map_iframe)
{!! $store->map_iframe !!}
@else
Map not available
@endif
@endforeach
@endif @endsection