netojose / laravel-bootstrap-4-forms

Bootstrap 4 forms for Laravel 5/6/7/8
MIT License
183 stars 58 forks source link

file of input does not support multiple #104

Open kingwkb opened 4 years ago

kingwkb commented 4 years ago

{!! Form::file('attachments', 'Photos', ['multiple'=>'multiple']) !!} {!! Form::file('attachments', 'Photos')->multiple() !!}

There are both that does not working

frankyso commented 4 years ago

Hi, you can implement it like this {!!Form::file('images[]', 'Images')->attrs(['multiple'=>'multiple']) !!}