@extends('layouts.site') @section('title', \App\Models\SiteSetting::get('faq_meta_title', 'FAQ - Faith & Future Summit')) @section('meta_description', \App\Models\SiteSetting::get('faq_meta_description', 'Frequently asked questions about Faith & Future Summit.')) @section('breadcrumbs', '[{"name":"FAQ"}]') @php $faqs = \App\Models\Faq::active()->get() @endphp @section('schema') {!! \App\Services\SeoService::faqSchema($faqs) !!} @endsection @section('content')
Have Questions?
@foreach($faqs as $faq)
{{ $faq->question }}
{{ $faq->answer }}
@endforeach
{{-- 1. FAQ Intro + Quick Links --}}

Frequently Asked Questions

Answers about tickets, speakers, past summits, media, and participation.

Contact Support arrow_forward
{{-- 2. FAQ Categories --}}

FAQ Categories

Browse questions by topic. Click a category to jump to relevant FAQs.

@foreach([['icon'=>'confirmation_number','name'=>'Registration'],['icon'=>'event','name'=>'Upcoming Events'],['icon'=>'history','name'=>'Past Summits'],['icon'=>'group','name'=>'Speakers'],['icon'=>'campaign','name'=>'Media'],['icon'=>'handshake','name'=>'Participation'],['icon'=>'support','name'=>'General Support']] as $cat)
{{ $cat['icon'] }}
{{ $cat['name'] }} Category
@endforeach
{{-- 3. Still Need Help? --}}
help

Still need help?

Our support team is ready to assist you with any questions or concerns.

Contact Support arrow_forward
@endsection