laravel-form-es6
v0.0.3
Published
ES6 laravel form and errors objects, using axios for ajax
Readme
Laravel Form
This are ES6 classes for easy handling of laravel forms and errors.
Usage
import Form from 'laravel-form';
// create form instance with default fields
const form = new Form({
id: undefined,
name: '',
age: '',
sex: ''
});