6 строки
366 B
Twig
6 строки
366 B
Twig
|
<form method="post" action="{{ path('user_delete', {'id': user.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
|
||
|
<input type="hidden" name="_method" value="DELETE">
|
||
|
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ user.id) }}">
|
||
|
<button class="btn btn-danger float-right">Удалить</button>
|
||
|
</form>
|