@extends('layouts.app') @section('title', __('الاسئلة الشائعة')) {{-- @section('meta_title', $SEO['meta_title']) @section('description', $SEO['meta_description']) @section('keywords', $SEO['meta_keywords']) @section('og:title', $SEO['og_title']) @section('og:description', $SEO['og_description']) @section('og_image', $SEO['image']) --}} @push('styles') @endpush @section('content')
{{--
هل لديك استفسار؟
--}}

{{ __('faq.faq_title') }}

{{-- زر "الكل" ثابت --}} {{-- التصنيفات من الـ API --}} @foreach ($categories as $category) @endforeach
@foreach ($faqs as $faq)
{{ $faq['question'] }}
{!! nl2br(e($faq['answer'])) !!}
@endforeach

{{ __('faq.need_help') }}

{{ __('faq.team_available') }}

@php $unifiedNumber = $careCenter['unified_number'] ?? ''; $whatsNumber = ''; if (!empty($careCenter['whatsapp_number'])) { $whatsNumber = preg_replace('/\D/', '', $careCenter['whatsapp_number']); } @endphp {{ __('faq.contact_us') }} {{ __('faq.live_chat') }}
@include('partials.footerPages')
@push('scripts') @endpush @endsection