{% if app.request.locale == 'ar' %} {% if app.session.flashBag.has('success') %}
{% for msg in app.session.flashBag.get('success') %} {{ msg|trans }} {% endfor %}
{% endif %} {% if app.session.flashBag.has('error') %}
{% for msg in app.session.flashBag.get('error') %} {{ msg|trans }} {% endfor %}
{% endif %} {% else %} {% if app.session.flashBag.has('success') %}
{% for msg in app.session.flashBag.get('success') %} {{ msg|trans }} {% endfor %}
{% endif %} {% if app.session.flashBag.has('error') %}
{% for msg in app.session.flashBag.get('error') %} {{ msg|trans }} {% endfor %}
{% endif %} {% endif %}