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