laravel-form-builder
laravel-form-builder copied to clipboard
Laravel Form builder for version 5+!
Since unchecked checkboxes are not posted (as per html spec), and since the `Form` class has the handy feature of returning `null` values when a field is not present in...
Every named form does not validate. Hope the code below explains it. ```php class ClientForm extends Form { public function buildForm() { // Add fields here... $this ->add('company_name', 'text', [...
When using a number field for a float, how do you set the step value for a number field, so the value can accept float numbers? Without specifying the step...
Hi, I am trying to integrate form builder in Laravel 5.4. But am getting error. TokenMismatchException
Is there a way of globally adding an attribute to a error message div? I want to add the aria role alert attribute to all my error messages. `The name...
I am trying using it with lumen 5.4.4 and getting error `Class 'Illuminate\Foundation\AliasLoader' not found` am I doing wrong?
when using vue.js, selected state should be set by vue.js, so it would be good to disable this. Hacky solution was to just set `selected` to `[]`: ``` ->add('last_name', 'text',...
Hi, I'm creating a custom template for a collection type, in order to create a bootstrap tabbed layout for my collection forms. Could anyone assist in finding out how to...
I have a `collection` field ``` $this->add('option_types', 'collection', [ 'type' => 'form', 'template' => 'products.partials.option_types_field', 'options' => [ 'class' => ProductOptionTypesForm::class, 'label' => false, ] ]); ``` ``` class ProductOptionTypesForm...
if it can integration dingo/api like symfony's form builder and fosrestbundle? i change the request to my request before form builder ``` class Request extends BaseRequest { public function session()...