{% for notice in app.flashes('primary') %}
{{ notice.title }}
{{ notice.message|raw }}
{% endfor %} {% for notice in app.flashes('success') %}
{{ notice.title }}
{{ notice.message|raw }}
{% endfor %} {% for notice in app.flashes('info') %}
{{ notice.title }}
{{ notice.message|raw }}
{% endfor %} {% for notice in app.flashes('warning') %}
{{ notice.title }}
{{ notice.message|raw }}
{% endfor %} {% for notice in app.flashes('danger') %}
{{ notice.title }}
{{ notice.message|raw }}
{% endfor %} {% for notice in app.flashes('secondary') %}
{{ notice.title }}
{{ notice.message|raw }}
{% endfor %} {% for notice in app.flashes('light') %}
{{ notice.title }}
{{ notice.message|raw }}
{% endfor %} {% for notice in app.flashes('dark') %}
{{ notice.title }}
{{ notice.message|raw }}
{% endfor %}