Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 607 Bytes

textarea.md

File metadata and controls

29 lines (20 loc) · 607 Bytes

Text areas

Bootstrap documentation

Basic

{{ bs()->textArea('textArea', 'Lorem ipsum blah blah blah') }}

Read-only

{{ bs()->textArea('textArea_ro', 'This one is read only')->disabled() }}
{{ bs()->text('plaintext', 'Read only and show as plain text')->readOnly(true) }}

Wrapped inside a form group

It can be wrapped inside a form group if needed.

{{ bs()->formGroup()
       ->label('Content')
       ->control(bs()->textArea('content', 'Lorem ipsum blah blah blah')) }}