templates/layout_module/_flash-msg.html.twig line 1

Open in your IDE?
  1. {% for key,msgs in app.session.flashBag.all %}
  2.     {% for msg in msgs %}
  3.         <div class="alert alert-{{ key }} alert-dismissible fade show" role="alert">
  4.             {% if key == 'success' %}
  5.                 <strong>{{ 'Амжилттай'|capitalize }}!</strong> {{ msg }}
  6.             {% elseif key == 'error' %}
  7.                 <strong>{{ 'Алдаа'|capitalize }}!</strong> {{ msg }}
  8.             {% elseif key == 'warning' %}
  9.                 <strong>{{ 'Анхаар'|capitalize }}!</strong> {{ msg }}
  10.             {% endif %}
  11.             <button type="button" class="btn-sm btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
  12.         </div>
  13.     {% endfor %}
  14. {% endfor %}