HegreLand/templates/employee/_delete_form.html.twig

5 lines
291 B
Twig
Raw Normal View History

2024-11-28 14:30:11 +01:00
<form method="post" action="{{ path('employee_delete', {'id': employee.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
2024-11-21 17:55:00 +01:00
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ employee.id) }}">
<button class="btn">Delete</button>
</form>