helper !== null) { $helperId = $this->id . 'Help'; $helperText = '' . $this->helper . ''; $this->attributes['aria-describedby'] = $helperId; } $labelAttributes = [ 'for' => $this->id, 'isOptional' => $this->required ? 'false' : 'true', ]; if ($this->hint) { $labelAttributes['hint'] = $this->hint; } $labelAttributes = stringify_attributes($labelAttributes); // remove field specific attributes to inject the rest to Form Component $fieldComponentAttributes = $this->attributes; unset($fieldComponentAttributes['as']); unset($fieldComponentAttributes['label']); unset($fieldComponentAttributes['class']); unset($fieldComponentAttributes['helper']); unset($fieldComponentAttributes['hint']); $fieldComponentAttributes['class'] = 'mb-1'; $element = __NAMESPACE__ . '\\' . $this->as; $fieldElement = new $element($fieldComponentAttributes); return << {$this->label} {$fieldElement->render()} {$helperText} HTML; } }