Skip to content
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

Clone this wiki locally