4 lines
292 B
Twig
4 lines
292 B
Twig
<form method="post" action="{{ path('app_resto_admin_delete', {'id': resto.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
|
|
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ resto.id) }}">
|
|
<button class="btn">Delete</button>
|
|
</form>
|