multishipping_checkout_billing.xml 1.5 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
  9. <update handle="multishipping_checkout"/>
  10. <body>
  11. <referenceBlock name="page.main.title">
  12. <action method="setPageTitle">
  13. <argument translate="true" name="label" xsi:type="string">Billing Information</argument>
  14. </action>
  15. </referenceBlock>
  16. <referenceContainer name="content">
  17. <block class="Magento\Multishipping\Block\Checkout\Billing" name="checkout_billing" template="Magento_Multishipping::checkout/billing.phtml" cacheable="false">
  18. <arguments>
  19. <argument name="checkout_data" xsi:type="object">Magento\Multishipping\Block\DataProviders\Billing</argument>
  20. </arguments>
  21. <container name="payment_methods_before" label="Payment Methods Before"/>
  22. <container name="payment_methods_after" label="Payment Methods After"/>
  23. </block>
  24. </referenceContainer>
  25. <referenceBlock name="head.components">
  26. <block class="Magento\Framework\View\Element\Js\Components" name="multishipping_checkout_billing_page_head_components" template="Magento_Checkout::js/components.phtml"/>
  27. </referenceBlock>
  28. </body>
  29. </page>