@extends('layouts.app') @section('title', $pageTitle . ' - ERAS') @section('content')
{{-- Hero Section --}}

Tax Education & Awareness Centre

Gain access to education and awareness materials, interact with us, submit ideas and obtain the help and assistance you need to work with us in making Edo state greater.

{{-- Content Section --}}
{{-- Section Header with Back Button --}}

{{ $sectionData->AwarenessCategoryName ?? $pageTitle }}

{{ $sectionData->SectionDescription ?? 'Learn more about this topic.' }}

Back
{{-- FAQ Content --}}
{{-- FAQ List (Left Panel) --}}

FAQ's

@if(!empty($faqs) && count($faqs) > 0) @else

FAQs are coming soon.
Please check back later.

@endif
{{-- FAQ Content (Right Panel) --}}
@if(!empty($faqs) && count($faqs) > 0) @foreach($faqs as $index => $faq)

{{ $faq->FAQTitle ?? 'FAQ ' . ($index + 1) }}

{!! $faq->FAQText ?? '

Content coming soon.

' !!}
@endforeach @else

FAQs are coming soon. Please check back later.

@endif
@endsection