Max content 255 char.
Comment is required.
<x-textarea wire:model="comment" label="Comment" description="Max content 255 char." placeholder="Write your comment here." required/>
<x-field> <x-label badge="Required">Comment</x-label> <x-description>Max content 255 char.</x-description> <x-textarea wire:model="comment" placeholder="Write your comment here." required /> <x-error name="comment" /></x-field>
variant
prop to change the visual style of the input. The default value
is
outline
.
<x-textarea variant="outline" /><x-textarea variant="filled" />
rows
prop to change the row of the textarea. The default value is
4
.
<x-textarea rows="4" /><x-textarea rows="5" />
resize
prop to change the resize behavior of the textarea. The default
value is
auto
.
<x-textarea resize="auto" /><x-textarea resize="none" /><x-textarea resize="vertical" /><x-textarea resize="horizontal" /><x-textarea resize="both" />