laravel-bootstrap-4-forms icon indicating copy to clipboard operation
laravel-bootstrap-4-forms copied to clipboard

Bootstrap 4 forms for Laravel 5/6/7/8

Results 32 laravel-bootstrap-4-forms issues
Sort by recently updated
recently updated
newest added

Option groups for select elements do not work ```php {!! Form::select('cars', 'Choose your Car')->options([ 'Swedish Cars' => [1 => 'Volvo', 2 => 'Saab'], 'German Cars' => [1 => 'Mercedes', 2...

Adding an ID to a button element using chainable id method is ignored. Eg: Form::button('Upload')->id('upload-btn') Output is: `Upload` Expected output: `Upload` Changing renderButton() function in FormBuilder.php fixes this: ``` private...

## The Problem I always use this package when developing with the Laravel framework and bootstrap, it's just a little difficult when making browser testing because to define selectors for...

Hello, While filling the form with eloquent data doesn't work for checkboxes. It isn't actually possible to set the checked state. **Reproduction:** Using bootstrap from npm with: `"bootstrap": "^4.0.0",` Using...

- Added bootstrap input group structure - Possibility to modify attributes in label tag - Placeholder effect in select tag - Support nested arrays as option groups in select tag...

`{!! Form::file('attachments', 'Photos', ['multiple'=>'multiple']) !!}` `{!! Form::file('attachments', 'Photos')->multiple() !!}` There are both that does not working

Even though the model value is === 0, it is not pre-selecting the radio when: ``` {!! Form::open()->fill($model !!} {!! Form::radio('has_tickets', 'No', 0) !!} ``` ![image](https://user-images.githubusercontent.com/5918271/80186437-46942700-860e-11ea-854d-62cc94a66f8a.png) `` Returns 'true';

I want to use this package together with Collective/Form, which obviously exists as 'Form', we need that default facade can be overwritten in config or renamed to BootForm or something...

![image](https://user-images.githubusercontent.com/1519969/83481127-d4570380-a451-11ea-8f97-32e0632dfd76.png) 0 and empty are different