@section('content') @include('offerings/head')

QUESTIONS AND ANSWERS


@if($errors->has())
@foreach ($errors->all() as $row) {{ $row }} @endforeach
@endif @if(Session::has('success'))
{{ Session::get('success') }}
@endif
{{ Form::open(array('action' => 'FaqOfferingController@postAddQuestion')) }}

Thank you. Your question has been sent to the management team. You will be notified when it is answered.

{{ Form::close() }}
@if($faq->count() > 0)
    @foreach($faq as $row)
  • Q:{{ $row->question }}
  • A:{{ $row->answer }}
  • @endforeach
{{ $faq->links() }} @endif
@endsection