@section('metatags') @stop @section('title') Pesquisa por | @stop @section('content')

Resultados da Pesquisa

{{ Form::open(['route' => 'search.index', 'method' => 'GET', 'class' => 'search']) }}
{{ Form::text('search', Request::get('search'), ['class' => 'form-control','placeholder' => 'Pesquisar por nome ou referência...', 'autocomplete' => 'off', 'required']) }}
{{ Form::close() }}
@if(!$products->isEmpty())
@include('search.partials.filters')

A carregar...
@include('products.partials.listItems')
@else


Não foram encontrados produtos para a pesquisa por "{{ Request::get('search') }}"

@endif
@stop @section('scripts') @stop