<?php if ($this->widget->label): ?>
    <label <?= $this->layout->getLabelAttributes($this->widget) ?>>
        <?php if ($this->widget->mandatory): ?>
            <span class="invisible"><?= $this->widget->mandatoryField ?> </span><?= $this->widget->label ?><span class="mandatory">*</span>
        <?php else: ?>
            <?= $this->widget->label ?>
        <?php endif; ?>
    </label>
<?php endif; ?>
