My question is this: I have a search form (GET), and I would like to know how to execute submit sending those parameters to the URL in a friendly way.
Note: parameters are not required.
Form :
{{ Form::open(array('route' => 'neighborhoods.city', 'class' => 'form-inline', 'method' => 'get')) }}
<div class="form-group col-xs-2 col-lg-2 col-md-2">
{{ Form::select('state_id', $states, 0, array('class' => 'form-control input-lg', 'id' => 'states')) }}
</div>
<div class="form-group col-xs-8 col-lg-8 col-md-8" id="cidades">
{{ Form::select('city_id', $cities, 0, array('class' => 'form-control input-lg', 'disabled' => true)) }}
</div>
<div class="form-group col-xs-2 col-lg-2 col-md-2">
{{ Form::submit('Buscar', array('class' => 'btn btn-default btn-lg btn-block btn-submit')) }}
</div>
{{-- Form::text('search', Input::old('search'), array('class' => 'form-control', 'placeholder' => 'Digite aqui o que você está procurando. Ex.: Encanador'))--}}
{{ Form::close() }}