payment_shipping.phtml 793 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. ?>
  6. <?php /** @var \Magento\Backend\Block\Template $block */ ?>
  7. <section class="admin__page-section order-shipment-billing-shipping">
  8. <div class="admin__page-section-title">
  9. <span class="title"><?= $block->escapeHtml(__('Payment &amp; Shipping Method')) ?></span>
  10. </div>
  11. <div class="admin__page-section-content">
  12. <div class="admin__page-section-item order-payment-method">
  13. <?= /* @noEscape */ $block->getChildHtml('pickup_shipment_payment') ?>
  14. </div>
  15. <div class="admin__page-section-item order-shipping-method">
  16. <?= /* @noEscape */ $block->getChildHtml('pickup_shipment_shipping') ?>
  17. </div>
  18. </div>
  19. </section>