@extends('layouts.main') @push('styles') @endpush @section('content')

{{ __('frequently_asked_questions.faq') }}

@include('frequently_asked_questions.menu') @include('flash::message')
{{ __('frequently_asked_questions.search_more') }} {{ Form::open(['route'=>'frequently_asked_questions.result', 'data-toggle' => 'validator']) }}
{{ Form::text('question', '', ['class' => 'form-control typeahead', 'required', 'placeholder' => __('frequently_asked_questions.search_for'), 'autocomplete' => 'off', 'spellcheck' => false]) }} {{ Form::submit(__('frequently_asked_questions.search'), ['class'=>'btn btn-info']) }}
{{ Form::close() }}
home

@foreach($questions as $question)

{{ $question->question }}


{{ $question->answer }}
@endforeach
{{ __('frequently_asked_questions.related_questions') }}
@endsection @push('scripts') @endpush