src/Elements/Bundle/DemiFrontendBundle/Resources/views/Checkout/includes/error-container.html.twig line 1

Open in your IDE?
  1. {% if error is defined and error is not empty  %}
  2.     <div class="alert alert-danger alert-dismissable{{ styleModifier is defined ? styleModifier : '' }}">
  3.         <a href="#" class="close" data-dismiss="alert" aria-label="{{ 'demi.close'|trans }}"
  4.            title="{{ 'demi.close'|trans }}">×</a>
  5.         <strong>{{ isList is defined and isList == true ?  'demi.error'|trans : 'demi.booking.checkout.error'|trans }}:</strong> {{ error|trans }}
  6.     </div>
  7. {% endif %}