multiplefile.blade.php 478 字节
<div class="{{$viewClass['form-group']}} form-group col-sm-12 clear-both row  {!! !$errors->has($errorKey) ? '' : 'has-error' !!}" style="clear:both;">

    <label for="{{$id}}" class="{{$viewClass['label']}} col-form-label">{{$label}}</label>

    <div class="{{$viewClass['field']}}">

        @include('admin::form.error')

        <input type="file" class="{{$class}}" name="{{$name}}[]" {!! $attributes !!} />

        @include('admin::form.help-block')

    </div>
</div>