@extends('layouts.site') @section('title', \App\Models\SiteSetting::get('privacy_meta_title', 'Privacy Policy - Faith & Future Summit')) @section('meta_description', \App\Models\SiteSetting::get('privacy_meta_description', 'Privacy Policy of Faith & Future Summit.')) @section('breadcrumbs', '[{"name":"Privacy Policy"}]') @section('content') {{-- Hero --}}
{{ \App\Models\SiteSetting::get('privacy_badge', 'Last Updated: July 2026') }}

{{ \App\Models\SiteSetting::get('privacy_subtext', 'How FFS collects, uses, stores, protects, and manages user information.') }}

{{-- Content Sections --}}

Content Sections

@php $defaultPrivacySections = [ ['title' => 'Information We Collect', 'content' => 'We may collect your name, email address, phone number, and professional affiliation when you register, subscribe, or contact us through the website.'], ['title' => 'How We Use Your Data', 'content' => 'Your information is used to communicate about events, respond to inquiries, and improve our services. We do not sell your data to third parties.'], ['title' => 'Cookies', 'content' => 'This site may use essential cookies for functionality and analytics. You can control cookie preferences through your browser settings.'], ['title' => 'Contact', 'content' => "For questions about this policy, email " . \App\Models\SiteSetting::get('contact_email', 'info@faithandfuturesummit.com') . "."], ]; $sections = \App\Models\SiteSetting::get('privacy_sections', $defaultPrivacySections); @endphp @foreach($sections as $i => $sec)
{{ $sec['title'] }}
{{ $sec['content'] }}
@endforeach

{{ \App\Models\SiteSetting::get('privacy_intro', 'Faith & Future Summit ("FFS," "we," "us") is committed to protecting your privacy. This policy describes how we collect, use, and safeguard your personal information.') }}

@endsection