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