Files
2025-01-09 09:31:51 +04:00

5 lines
301 B
Twig

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