@extends('layouts.site') @section('title', \App\Models\SiteSetting::get('speakers_meta_title', 'Speakers โ€” Faith & Future Summit')) @section('meta_description', \App\Models\SiteSetting::get('speakers_meta_description', 'Browse our combined speaker roster from previous and current editions.')) @section('content') {{-- Hero --}}
Voices of the Summit

A combined speaker roster from previous and current editions โ€” scholars, researchers, and thought leaders from across the globe.

Past + Current Speakers
@if($speakers->isNotEmpty()) @endif
groups

{{ $speakers->count() }} Speakers

{{-- Speaker Grid --}}
@if($speakers->isEmpty())
groups

Speakers Coming Soon

Our speaker lineup is being curated. Stay tuned for announcements.

Get Updates arrow_forward
@else

Speaker Cards Grid

@foreach($speakers as $sp)
@if($sp->photo) {{ $sp->name }} @else
person
@endif

{{ $sp->name }}

{{ collect([$sp->country, $sp->role])->filter()->join(' ยท ') }}

View Profile โ†’
@endforeach
@endif
{{-- CTA --}} @if($speakers->isNotEmpty())
person_add

Are you a scholar, researcher, or thought leader? Apply to join our distinguished speaker lineup.

@endif @endsection