@extends('layouts.app')
@section('title', 'FAQ Manager')
@section('nav_faqs', 'bg-teal-50 text-teal-700 font-semibold')
@section('page_title', 'FAQ Manager')
@section('page_subtitle', 'Questions & answers shown on the public /faqs page')
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
@if($errors->any())
{{ $errors->first() }}
@endif
{{-- Add FAQ --}}
{{-- Existing FAQs --}}
@if($faqs->isEmpty())
No FAQs yet. Add your first question above.
@else
@foreach($faqs as $faq)
{{-- Display --}}
{{ $faq->question }}
@if($faq->category)
{{ $faq->category }}
@endif
@if(!$faq->published)
Hidden
@endif
{{ $faq->answer }}
Translate
{{-- Edit --}}
@endforeach
@endif
@endsection