Create New Faq
{!! Form::open(['route' => 'cms.faqs.index']) !!}
@include('cms.faqs._form', ['submitButton' => "Save"])
{!! Form::close() !!}
@if($faqs->count() == 0)
@else
@foreach($faqs as $key => $faq)
{{-- --}}
@endforeach
{{ label('lbl_no_information') }}
{!! $faqs->render() !!}
@endif