4. Buttons and Links - joserick/laravel-bootstrap-4-forms GitHub Wiki
Buttons
| Param |
Type |
Default |
Description |
| $value |
string |
null |
Button value |
| $color |
string |
null |
Button color |
| $size |
string |
null |
button size |
Submit
// Example
{!!Form::submit("Send form")!!}
Button
// Example
{!!Form::button("Do something", "warning", "lg")!!}
Reset
// Example
{!!Form::reset("Clear form")!!}
Links
Anchor
| Param |
Type |
Default |
Description |
| $value |
string |
null |
Anchor text |
| $url |
string |
null |
Anchor url |
// Example
{!!Form::anchor("Link via parameter", 'foo/bar')!!}