{# Check if we got some flash messages #}
{% if app.session.flashbag.peekAll()|length > 0 %}
{# Loop all types of flash messages #}
{% for type, messages in app.session.flashbag.all() %}
{% for message in messages %}
<div class="alert alert-{{ type }}">
{{ message|trans }}
</div>
{% endfor %}
{% endfor %}
{% endif %}