@extends('backend.layout')
{{-- this style will be applied when the direction of language is right-to-left --}}
@includeIf('backend.partials.rtl-style')
@section('content')
@if (count($faqs) == 0)
{{ __('NO FAQ FOUND')."!" }}
@else
@endif
{{-- create modal --}}
@include('backend.faq.create')
{{-- edit modal --}}
@include('backend.faq.edit')
@endsection