Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 847 Bytes

text.md

File metadata and controls

47 lines (31 loc) · 847 Bytes

Text fields

Bootstrap documentation

Basic

{{ bs()->text('username')->placeholder('Username') }}

Read-only

{{ bs()->text('readonly', 'Read only')->readOnly() }}
{{ bs()->text('plaintext', 'Read only and show as plain text')->readOnly(true) }}

Sizing

Inputs are sizable controls in general.

{{ bs()->text('username')->placeholder('Small')->sizeSmall() }}
{{ bs()->text('username')->placeholder('Default') }}
{{ bs()->text('username')->placeholder('Large')->sizeLarge() }}

Wrapped inside a form group

It can be wrapped inside a form group if needed.

{{ bs()->formGroup()
       ->label('Username')
       ->control(bs()->text('username')->placeholder('Username')) }}