Field Slots

Also see custom view

//field string slots
before(string $text)
after(string $text)
above(string $text)
below(string $text)
help(string $help)

Example string slots

Input::make('Label')
    ->before('Before')
    ->after('After')
    ->above('Above')
    ->below('Below')
    ->help('Some help text')
    ->icon('file-user'), //requires blade ui kit icons

Example help

Input::make('City')->required()->help('Please enter your current city.'),

Last updated