I have the following form with the get method, but when sending the request it sends the token through the url. How can I hide ur token?
URL: 127.0.0.1:8000/search?_token=bsL7AC1ymwC1UbtwWSRwz4d6YrirLsAP5Xbkfnqh&busca=or
<form action="{{route('search')}}" method="get">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<div class="input-group">
<input type="text" class="form-control" name="busca" placeholder="Buscar..." required>
<span class="input-group-btn">
<button class="btn" type="submit">
<i class="fa fa-search"></i>
</button>
</span>
</div>