You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ahmad Derakhshan edited this page Feb 3, 2014
·
3 revisions
1. Form Builders:
Form builders are helper functions that help your create html forms easily. Blade Form Builder uses Bootstrap markups and easily creates a bootstrap form for you. it also has a built-in validation system.
simple usage:
@form("/form/submit")
@field('text', {
'class': 'text-input',
'placeholder': 'this is a simple text input',
'validation': 'text|min(10)|max(30)'
})
@endform