Helper functions - neo13/blade.js GitHub Wiki

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