{{ __('Frequently asked questions') }} @if ($faq_category->id) ({{ $faq_category->name }}) @endif

{{ str(__('Please review frequently asked questions, if you cannot find the answer you are looking for? Reach out to our support team by opening forum :thread.', ['thread' => '' . __('thread') . '']))->toHtmlString() }}

@forelse ($faqs as $faq)
@if ($settings['faqs_index'] ?? null) {{ $loop->iteration + $faqs->perPage() * $faqs->currentPage() - 10 }}. @endif {{ $faq->question }}
{{ parse_markdown($faq->answer) }}
@if ($faq->extra_attributes->isNotEmpty())
@foreach ($faq->extra_attributes as $key => $value)
{{ $key }}
{{ filter_var($value, FILTER_VALIDATE_URL) !== false ? str('')->toHtmlString() : $value }}
@endforeach
@endif
@empty @endforelse
@if ($faqs->hasPages())
{{ $faqs->links() }}
@endif
@once @push('scripts') @endpush @endonce