@extends('template') @section('content')
{!! Form::open(['route' => 'faq.bycat', 'method' => 'post', 'role' => 'form']) !!}
{!! Form::label('faq_categoria_id', ' ', ['class' => 'control-label']) !!} {!! Form::select('faq_categoria_id', $categorias, $categoria, ['class'=>'bs-select form-control input-large', 'onchange'=>'carregaFaq(this.value)','data-style'=>'blue-madison']) !!}
{!! Form::close() !!}
@if(count($faqs) > 0)
Dúvidas Frequentes
@foreach($faqs as $faq)
{!! $faq->resposta !!}
@endforeach
@else



Novidades em breve!





@endif
@stop() @section('js-faq') @if(Auth::user()->chat) @endif @stop