modules/Lumino/LuminoBeady/templates/web/customer/form/start.twig line 1

Open in your IDE?
  1. {##
  2.  # Form start
  3.  #}
  4. <form{% for paramName, paramValue in this.getFormAttributes() %} {{ paramName }}="{{ paramValue }}"{% endfor %}>
  5. <div class="form-params" style="display: none;">
  6.   {% for paramName, paramValue in this.getFormParams() %}
  7.     <input type="hidden" name="{{ paramName }}" value="{{ paramValue }}" />
  8.   {% endfor %}
  9. </div>