{% for key,msgs in app.session.flashBag.all %}
{% for msg in msgs %}
<div class="alert alert-{{ key }} alert-dismissible fade show" role="alert">
{% if key == 'success' %}
<strong>{{ 'Амжилттай'|capitalize }}!</strong> {{ msg }}
{% elseif key == 'error' %}
<strong>{{ 'Алдаа'|capitalize }}!</strong> {{ msg }}
{% elseif key == 'warning' %}
<strong>{{ 'Анхаар'|capitalize }}!</strong> {{ msg }}
{% endif %}
<button type="button" class="btn-sm btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
{% endfor %}
{% endfor %}