first commit

This commit is contained in:
denisdulici
2017-09-14 22:21:00 +03:00
commit 515bdaf5cd
598 changed files with 48030 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<div class="form-group {{ $col }} {{ isset($attributes['required']) ? 'required' : '' }} {{ $errors->has($name) ? 'has-error' : '' }}">
{!! Form::label($name, $text, ['class' => 'control-label']) !!}
<br/>
@foreach($items as $item)
<div class="col-md-3">
{{ Form::checkbox($name . '[]', $item->$id) }} &nbsp; {{ $item->$value }}
</div>
@endforeach
{!! $errors->first($name, '<p class="help-block">:message</p>') !!}
</div>