templates/flashes-message.html.twig line 1

Open in your IDE?
  1. {% for message in app.flashes('sucess') %}
  2.     <div class="notification bg-success">
  3.         <a href="#"><i class="fa fa-times close-notification"></i></a>
  4.             - {{ message }}<br>
  5.     </div>
  6. {% endfor %}
  7. {% for message in app.flashes('error') %}
  8.     <div class="notification bg-danger">
  9.         <a href="#"><i class="fa fa-times close-notification"></i></a>
  10.             - {{ message }}<br>
  11.     </div>
  12. {% endfor %}