{{-- Public contact page — composed of editorial sections in the prototype's exact design system: serif headlines, hairline cards, mono micro-labels. Form is a visual / preview; wire it to a real ContactController route before going live. --}} {{-- ============== HERO ============== --}}
— {{ fc('contact.hero.eyebrow', __('Contact us')) }}

{!! fc( 'contact.hero.headline', __('A real human') . '
' . __('replies inside') . ' ' . __('four hours.') . '', ) !!}

{{ fc('contact.hero.intro', __('Sales, support, partnerships, security — every email lands in the same inbox, and someone on our team replies. No tickets, no bots, no escalation queues.')) }}

4h
{{ __('avg reply') }}
24/7
{{ __('on Scale') }}
9
{{ __('languages') }}
{{-- Sections below the hero are captured by slug and echoed in the admin-defined order (fc_section_order), hidden ones skipped. The hero above is pinned. --}} @php $sec = []; @endphp {{-- ============== CHANNELS ============== --}} @php ob_start(); @endphp
@php $sec['channels'] = ob_get_clean(); @endphp {{-- ============== FORM ============== --}} @php ob_start(); @endphp
02
— {{ fc('contact.form.eyebrow', __('Write to us')) }}
{{ fc('contact.form.sublabel', __('Send a message')) }}
{{ __('lands in the founders\' inbox') }}

{!! fc( 'contact.form.headline', __('Tell us what') . '
' . __('you are') . ' ' . __('shipping.') . '', ) !!}

@if (session('contact_status') === 'success')
{{ __('Message sent') }}

{{ __('Thanks — your message landed in our inbox. We reply inside 4 hours, weekends included.') }}

@endif @if (isset($errors) && $errors->any())
{{ __('Please check the form — some fields need attention.') }}
@endif
@csrf {{-- Honeypot — hidden from humans, bots fill it; submissions with it set are silently dropped. --}} @php $topic = old('topic'); @endphp
{{ __('We reply inside 4 hours, weekends included.') }}
{{-- offices --}}
{{ __('Office · 01') }}
HQ

Bengaluru

42 Cubbon Park Road
Bengaluru 560001
{{ __('India') }}

{{ __('humans here') }}
26
{{ __('timezone') }}
IST
{{ __('Office · 02') }}
EU

Berlin

Friedrichstraße 88
10117 Berlin
{{ __('Germany') }}

{{ __('humans here') }}
12
{{ __('timezone') }}
CET
@php $sec['form'] = ob_get_clean(); @endphp {{-- ============== FAQ ============== --}} @php ob_start(); @endphp @php $sec['faq'] = ob_get_clean(); @endphp @php ob_start(); @endphp @php $sec['cta-final'] = ob_get_clean(); @endphp @php foreach (fc_section_order('contact', array_keys($sec)) as $slug) { if (fc_section_visible('contact', $slug)) { echo $sec[$slug]; } } @endphp