2021-02-18 19:13:14 +00:00
|
|
|
<form method="post" action="{{ path('beer_delete', {'id': beer.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' ~ beer.id) }}">
|
2021-02-18 22:05:41 +00:00
|
|
|
<button class="btn btn-{{ btn_color|default('danger')}}"><i class="fa fa-trash fa-fw"></i> {{'Delete'}}</button>
|
2021-02-18 19:13:14 +00:00
|
|
|
</form>
|