QUESTIONS AND ANSWERS
@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif
@if(Session::has('success'))
{{ Session::get('success') }}
@endif
@if($faq->count() > 0)
@foreach($faq as $row)
- Q:{{ strtoupper($row->question) }}
- A:{{ $row->answer }}
@endforeach
{{ $faq->links() }}
@endif