I have the following form in java and I do not know how to make Laravel detect the crsf.
<form method="post" action="/turnos/${data.id}">
<input type="hidden" name="_token" value="csrf_token()">
<input type="hidden" name="_method" value="delete" />
<a href="/turnos/${data.id}" rel="tooltip" title="Ver detalle" class="btn btn-info btn-simple btn-xs" >
<span class="oi oi-info"></span>
</a>
<a href="/turnos/${data.id}/edit" rel="tooltip" title="Editar" class="btn btn-success btn-simple btn-xs" >
<span class="oi oi-pencil"></span>
</a>
<button type="submit" rel="tooltip" title="Borrar" class="btn btn-danger btn-simple btn-xs">
<span class="oi oi-trash"></span>
</button>
</form>