laravel-bootstrap-4-forms
laravel-bootstrap-4-forms copied to clipboard
Bootstrap 4 forms for Laravel 5/6/7/8
`{!! Form::select('available_languages', __('Available languages'), $availableLanguagesCollection)->multiple() }} ` render for me: ``` English Russian ``` why not available_languages[] ? i want array in my action controller
I often use multidimensional forms with input name like **"name[of][the][variable]"** that cannot be properly validated. This patch will resolve the issue.
i'm found problem on return to form with old values and restore it in multiple select, i'm pass as name "something[]", but "old" function don't support that naming, that fix...
It doesn't support nested arrays to allow for option groups in select tag
Groups
How to perform this: https://getbootstrap.com/docs/4.0/components/input-group/#button-addons Or this: https://getbootstrap.com/docs/4.0/components/input-group/#basic-example
How can I add a class to a label? Please add this opportunity, if it is not.
I believe its not possible to add attributes to a field without value. I can push a PR to fix this issue if necessary. Example :
Hey Guys, When I call->autocomplete('off') on the form, or on an input in the form, it seems google chrome does not give a crap about it. It just keeps suggesting...
I ran into a similar issue as #46 where I needed to validate forms that use nested array bracket (`[]` ) names. Example form and request validator rules. ```html ```...
Hey Guys, First off, Your class has made my life a lot easier, Thank you!!! My forms went from 1K lines to a couple hundred with styling included which is...