templates/_flash.html.twig line 1

Open in your IDE?
  1. {% for label, messages in app.flashes %}
  2.     {% for message in messages %}
  3.         <div class="alert alert-card alert-{{ label }}" role="alert">
  4.             <strong class="text-capitalize">{{ label }}</strong> {{ message }}
  5.             <button class="close" type="button" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
  6.         </div>
  7.     {% endfor %}  
  8. {% endfor %}