@extends('frontend.layout') @section('title', 'Privacy Policy — ' . config('app.name')) @php $c = $content ?? []; $sections = $c['sections'] ?? []; @endphp @section('content')
{{-- Header --}}

Privacy Policy

{{ $c['subtitle'] ?? 'Your privacy is important to us. This policy explains how we collect, use, and protect your data.' }}

Last Updated: {{ $c['last_updated'] ?? '' }}
GDPR Compliant
{{-- Sections as card grid --}}
@foreach($sections as $index => $section) @if(!empty($section['title']))
{{ str_pad($index + 1, 2, '0', STR_PAD_LEFT) }}

{{ $section['title'] }}

{{ $section['content'] ?? '' }}

@endif @endforeach
{{-- Bottom text --}} @if(!empty($c['bottom_text']))

{{ $c['bottom_text'] }}

@endif {{-- Bottom CTA --}}

{{ __('Questions about your data?') }} {{ __('Contact our privacy team') }}

@endsection