Appearance
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.


php
use Filament\Forms\Components\Textarea;
Textarea::make('notes')->rows(4);
Textarea::make('notes')->filledField();