@extends('layouts.guest') @section('content')
{{ __('FAQs') }}

{{ __('Got questions? We have all answers for you.') }}

@if ($faq_exists) @foreach ($categories as $category)
{{ ucfirst($category->name) }}
@foreach ( $faqs as $faq ) @if ($category->name == $faq->category)
{!! $faq->answer !!}
@endif @endforeach
@endforeach @else
{{ __('No FAQ answers were published yet') }}
@endif
@endsection