我在表单中创建了图片upload file
文本字段。如果用户想要多选字段。我想为'用户'选择文件数的用户授予权利。
让我告诉你我的文字字段。
<div class="form-group col-lg-10">
{!! Form::label('file', 'Upload Chart:') !!}
{!! Form::file('file', null,['class'=>'form-control'])!!}
</div>
答案 0 :(得分:1)
在html5中,您只需添加multiple
属性即可支持多个文件上传。
<input type="file" name="field_name_for_files" multiple>
我不知道你正在使用的Form
助手,但它应该接受第三个参数数组中的'multiple' => 'multiple'
。
试试这个:
<div class="form-group col-lg-10">
{!! Form::label('file', 'Upload Chart:') !!}
{!! Form::file('file', null,['class'=>'form-control', 'multiple' => 'multiple'])!!}
</div>
希望这有帮助。