<h3>
    <span class="fas fa-trash-alt"></span>
    {% trans %}Delete group{% endtrans %}
    {{ pageSetVar('title', 'Delete group'|trans) }}
</h3>

{{ form_start(form) }}
{{ form_errors(form) }}
<fieldset>
    <legend>{% trans %}Confirmation prompt{% endtrans %}</legend>
    <p class="alert alert-warning">{% trans with {'%s': group.name} %}Do you really want to delete group '%s'?{% endtrans %}</p>
</fieldset>
<div class="form-group row">
    <div class="col-md-9 offset-md-3">
        {{ form_widget(form.delete) }}
        {{ form_widget(form.cancel) }}
    </div>
</div>
{{ form_end(form) }}
