@extends('admin.layouts.app') @section('title', 'CMS') @section('subtitle', 'Manage app content') @push('styles') @endpush @section('content') @php $activeTab = session('active_tab', 'privacy'); @endphp {{-- Tabs --}}
{{-- ── Privacy Policy ──────────────────────────────────────── --}}
Privacy Policy
Displayed in the app under Settings → Privacy Policy
@csrf
{!! $privacy !!}
{{-- ── Terms & Conditions ──────────────────────────────────── --}}
Terms & Conditions
Displayed in the app under Settings → Terms & Conditions
@csrf
{!! $terms !!}
{{-- ── About Us ─────────────────────────────────────────────── --}}
About Us
Displayed in the app under Settings → About Us
@csrf
{!! $about !!}
{{-- ── FAQs ────────────────────────────────────────────────── --}}
FAQs
Frequently asked questions shown in the app
@csrf
@forelse($faqs as $i => $faq)
{{ $i + 1 }}
Question {{ $i + 1 }} @if(!empty($faq['tag'])) {{ $faq['tag'] }} @endif
Tag (category)
Question
Answer
@empty
No FAQs yet. Click "Add FAQ" to get started.
@endforelse
@endsection @push('scripts') @endpush