You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
-
- /** @var \Magento\Customer\Block\Widget\Company $block */
- ?>
- <div class="field company <?= $block->isRequired() ? 'required' : '' ?>">
- <label for="company" class="label">
- <span>
- <?= $block->escapeHtml(__('Company')) ?>
- </span>
- </label>
- <div class="control">
- <?php
- $_validationClass = $block->escapeHtmlAttr(
- $this->helper(\Magento\Customer\Helper\Address::class)
- ->getAttributeValidationClass('company')
- );
- ?>
- <input type="text"
- name="company"
- id="company"
- value="<?= $block->escapeHtmlAttr($block->getCompany()) ?>"
- title="<?= $block->escapeHtmlAttr(__('Company')) ?>"
- class="input-text <?= $_validationClass ?: '' ?>"
- >
- </div>
- </div>
|