@extends('frontendLayout') @section('frontend_layout') @push('frontend_css') @endpush
@if (session('success'))
{{ session('success') }}
@endif {{-- Header --}}

{{ data_get($contactData ?? [], 'title', 'Contact Us') }}

{{ data_get($contactData ?? [], 'subtitle', 'We would love to hear from you. Get in touch with us anytime.') }}

{{-- Contact Info --}}
Get In Touch

Shop Name: {{ data_get($contactData ?? [], 'shop_name', 'ShopSphere') }}

Location: {{ data_get($contactData ?? [], 'address', 'Bangladesh') }}

Phone: {{ data_get($contactData ?? [], 'phone', '+880 1XXXXXXXXX') }}

Email: {{ data_get($contactData ?? [], 'email', 'support@shopsphere.com') }}

Working Hours: {{ data_get($contactData ?? [], 'working_hours', '10:00 AM - 9:00 PM') }}


{{ data_get($contactData ?? [], 'intro', 'Feel free to contact us for inquiries, support, or feedback. Our team will get back to you as soon as possible.') }}

{{-- Contact Form --}}
Send Message
@csrf
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('message') {{ $message }} @enderror
{{-- Google Map --}}
@endsection