Skip to content

Commit

Permalink
File only accepts name and options attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
mbdwey committed Feb 15, 2018
1 parent 11f7275 commit 5f7aeeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/partials/form/file_group.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="form-group {{ $col }} {{ isset($attributes['required']) ? 'required' : '' }} {{ $errors->has($name) ? 'has-error' : '' }}" style="min-height: 59px">
{!! Form::label($name, $text, ['class' => 'control-label']) !!}
{!! Form::file($name, $value, array_merge(['class' => 'form-control'], $attributes)) !!}
{!! Form::file($name, array_merge(['class' => 'form-control'], $attributes)) !!}
{!! $errors->first($name, '<p class="help-block">:message</p>') !!}
</div>

0 comments on commit 5f7aeeb

Please sign in to comment.