I have the form below, in which a button deletes the record of the current line.
<form class="form-inline" method="POST" action="/servidores/{{ $serve->id }}">
{{ method_field('DELETE') }}
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<button type="submit" class="btn btn-xs btn-danger"'>Excluir</button>
</form>
It works, but does not confirm the deletion; deletes onclick. Is it possible to add confirmation with laravel features?