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

file of input does not support multiple

Open kingwkb opened this issue 4 years ago • 1 comments

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

There are both that does not working

kingwkb avatar Jun 02 '20 21:06 kingwkb

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

frankyso avatar Nov 01 '20 11:11 frankyso