Skip to content
See live

Textarea

A Textarea renders as a Material text field in the same three variants as the text input, stretched to its rows rather than centered on one line.

A textarea with a label and a bordered containerA textarea with a label and a bordered container
php
use Filament\Forms\Components\Textarea;

Textarea::make('notes')->rows(4);
Textarea::make('notes')->filledField();