templates/formErrors.html.twig line 1

Open in your IDE?
  1. {% if error is defined and error %}
  2.     <div class="col-md-12">
  3.         <div class="errorHandler alert alert-danger no-display" style="display: block;">
  4.             <i class="fa fa-times-sign"></i> You have some form errors. Please check below.
  5.         </div>
  6.         <div class="successHandler alert alert-success no-display" style="display: none;">
  7.             <i class="fa fa-ok"></i> Your form validation is successful!
  8.         </div>
  9.     </div>
  10. {% endif %}