*/ protected array $attributes = [ 'rows' => '6', 'class' => 'textarea', ]; protected string $lang = ''; public function setValue(string $value): void { $this->value = htmlspecialchars_decode($value); } #[Override] public function render(): string { $this->attributes['slot'] = 'textarea'; $textarea = form_textarea($this->attributes, $this->getValue()); return <<{$textarea} HTML; } }