@extends('layouts.app') @section('title', __('faq.page_title')) @section('meta_description', __('faq.meta_description')) @section('content') {{-- Breadcrumb --}}
{{-- FAQ Area --}}
{{-- Colonne gauche : intro + contact --}}

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

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

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

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

{{ __('faq.contact_link') }}
{{-- Colonne droite : accordion --}}
@if($faqs->count() > 0)
@foreach($faqs as $index => $faq)
@sanitized($faq->answer)
@endforeach
@else

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

@endif
@endsection @push('scripts') @endpush