{% for label, messages in app.flashes %}
{% if label == 'confirmation' %}{% set label = 'success' %}{% endif %}
<b-notification type="is-{{ label }}" :closable="false" has-icon>
{% if label == 'danger' %}<b>Fehler</b><br>{% endif %}
{% if label == 'warning' %}<b>Achtung</b><br>{% endif %}
{% if label == 'success' %}<b>Erfolgreich</b><br>{% endif %}
{% for message in messages %}
{{ message | raw }}{% if not loop.last %}<br>{% endif %}
{% endfor %}
</b-notification>
{% endfor %}