templates/elements/_flash.html.twig line 1

Open in your IDE?
  1. {% for type, flash in app.flashes %}
  2.     {% if type == "success" %}
  3.         {% for msg in flash %}
  4.             <div data-message="{{ msg }}" data-type="success" class="js-flash"></div>
  5.         {% endfor %}
  6.     {% endif %}
  7.     {% if type == "error" %}
  8.         {% for msg in flash %}
  9.             <div data-message="{{ msg }}" data-type="error" class="js-flash"></div>
  10.         {% endfor %}
  11.     {% endif %}
  12. {% endfor %}