{!! Form::open(['route' => 'usuarios.index', 'method' => 'get']) !!}
{!! Form::close() !!}
{!! Form::label('filtro_uf', 'UF:') !!}
{!! Form::select('filtro_uf', $uf, $filtros['filtro_uf'] != "" ? $filtros['filtro_uf'] : '', ['class' => 'form-control']) !!}
{!! Form::label('filtro_municipio', 'Municipio:') !!}
{!! Form::text('filtro_municipio', $filtros['filtro_municipio'] != "" ? $filtros['filtro_municipio'] : '', ['class' => 'form-control']) !!}
{!! Form::label('filtro_cnpj', 'Cnpj:') !!}
{!! Form::text('filtro_cnpj', $filtros['filtro_cnpj'] != "" ? $filtros['filtro_cnpj'] : '', ['class' => 'form-control mascara_cnpj']) !!}
{!! Form::label('filtro_nome', 'Nome:') !!}
{!! Form::text('filtro_nome', $filtros['filtro_nome'] != "" ? $filtros['filtro_nome'] : '', ['class' => 'form-control']) !!}
@include('usuarios.table')
@include('adminlte-templates::common.paginate', ['records' => $usuarios])