templates/includes/notifications.twig line 1

Open in your IDE?
  1. {% for label, messages in app.flashes %}
  2.     {% if label == 'confirmation' %}{% set label = 'success' %}{% endif %}
  3.     <b-notification type="is-{{ label }}" :closable="false" has-icon>
  4.         {% if label == 'danger' %}<b>Fehler</b><br>{% endif %}
  5.         {% if label == 'warning' %}<b>Achtung</b><br>{% endif %}
  6.         {% if label == 'success' %}<b>Erfolgreich</b><br>{% endif %}
  7.         {% for message in messages %}
  8.             {{ message | raw }}{% if not loop.last %}<br>{% endif %}
  9.         {% endfor %}
  10.     </b-notification>
  11. {% endfor %}