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