bootstrap-form
bootstrap-form copied to clipboard
Bootstrap 3 form builder for Laravel
As on version 2.3. If I set à label to "false" to avoid having a label, I always get label. Think forcing label to string result to à $label value...
With this pull request the package is now compatible with the latest versions of PHP 8.*. The HTML labels were not rendered due to non-compatible type declarations in label-related methods....
All in title, This will allow to enable the auto field with get or post
Hi, It will be good if you could add an attribute into config file to manager error class. Something like this : config.php ``` ... 'error_class' => 'has_error'; // default...
According to https://github.com/dwightwatson/bootstrap-form/issues/86
Is there any plan to implement method chain behaviour? I like it because easy to customize element. I used to use adamwathan/bootform. So sad it is abandoned. I already take...
When using horizontal forms, you cannot add the input-group class to the same wrapping element that has the col-* classes. input-group removes padding of the column so the prefix/suffix column...
Return HtmlString instead of string from BootForm methods, the same as LaravelCollective do, it allows to use {{ }} instead of {!! !!}, currently it works with {{ BootForm::open() }}...
Hi! I have problems with: {!! BootForm::date('datetime','Date' } {!! BootForm::date('datetime','Date',old('datetime') } This code not working, all the times the view show me a blank field datatime. (In the database, datetime...
The _method input not generated when the store key is not exists or null. `{!! BootForm::open([ 'model' => $user, 'update' => 'users.update', ]) !!}` ``