templates/bundles/BitBagSyliusB2BPlugin/Shop/Register/Organization/register.html.twig line 25

Open in your IDE?
  1. {% extends '@SyliusShop/layout.html.twig' %}
  2. {% form_theme form '@SyliusShop/Form/theme.html.twig' %}
  3. {% block title %}{{ 'sylius.ui.register_in_the_store'|trans }} | {{ parent() }}{% endblock %}
  4. {% block content %}
  5.     {% include '@BitBagSyliusB2BPlugin/Shop/Register/Organization/_header.html.twig' %}
  6.     {{ sylius_template_event('sylius.shop.register.after_content_header') }}
  7.     {{ sylius_template_event('sylius.shop.register.before_form') }}
  8.     {{ form_start(form, {'action': path('bitbag_sylius_organization_plugin_shop_register_organization'), 'attr': {'class': 'ui form hyfindr-form'}}) }}
  9.     {% include '@BitBagSyliusB2BPlugin/Shop/Register/Organization/_form.html.twig' with {'type': 'customer'} %}
  10.     {{ sylius_template_event('sylius.shop.register.form', {'form': form}) }}
  11.     <button type="submit" class="hyfindr btn btn--primary register-form-submit" {{ sylius_test_html_attribute('register-button') }}>
  12.         {{ 'app.ui.create_account_for_free'|trans }}
  13.     </button>
  14.     {{ form_row(form._token) }}
  15.     {{ form_end(form, {'render_rest': false}) }}
  16.     {{ render(path('bitbag_sylius_cms_plugin_shop_block_index_by_section_code', {'sectionCode' : 'buyer_faq', 'template' : 'Context/Shop/FAQ/faq.html.twig'})) }}
  17.     {% include '@SyliusShop/Common/Sections/brandsCarousel.html.twig' %}
  18.     {% include '@SyliusShop/Common/Sections/digitalEcosystem.html.twig' %}
  19. {% endblock %}