@extends('layouts.app') @section('title', block('contact.hero.title_meta', $isRtl ? 'اتصل بنا' : 'Contact Us')) @php $contactPhone = $siteSettings->get('contact_phone', '+966 800 245 0071'); $contactEmail = $siteSettings->get('contact_email', 'customercare@hotspot.sa'); $contactAddress = $siteSettings->get($isRtl ? 'contact_address_ar' : 'contact_address_en', block('contact.info.address_default', $isRtl ? 'هوت سبوت للتسويق الرقمي، 2493 حي الصالحي 7326، الرياض، السعودية' : 'Hotspot Digital Marketplace LLC, 2493 Al Salhi Dist. 7326, Riyadh, SA')); $waNumber = $siteSettings->get('whatsapp_number', '966500000000'); $phoneTel = preg_replace('/\D+/', '', $contactPhone); @endphp @section('content')

{{ block('contact.info.visit_title', $isRtl ? 'زر مقرّنا' : 'Visit Our Studio') }}

{{ $contactAddress }}

{{ block('contact.info.call_title', $isRtl ? 'اتصل بنا' : 'Call Us') }}

{{ $contactPhone }}

{{ block('contact.info.email_title', $isRtl ? 'راسلنا' : 'Email Us') }}

{{ $contactEmail }}

@foreach($socialLinks ?? [] as $social) @endforeach

{{ block('contact.form.title', $isRtl ? 'أرسل لنا رسالة' : 'Send us a Message') }}

{{ block('contact.form.subtitle', $isRtl ? 'سنرد عليك خلال 24 ساعة.' : "We'll get back to you within 24 hours.") }}

@if(session('success'))
{{ session('success') }}
@endif
@csrf
@endsection