File: D:/HostingSpaces/SBogers33/bbec.nl/workbench/komma/kms/src/views/attributes/checkboxes.blade.php
<div class="entity-attribute entity-attribute-checkboxes {{{ count($attribute->errors) == 0 ? '' : ' error' }}} {{{$attribute->class}}} @if( !$attribute->show || ($attribute->show === 'admin' && !\Auth::user()->get()->is_admin) ) hidden @endif ">
<p class="label-placeholder">{{$attribute->label}}</p>
<div class="checkboxes">
@foreach($attribute->getData() as $dataObject)
<label>
<input type="checkbox" name="{{$attribute->key}}[]" value="{{$dataObject['value']}}" @if(isset($attribute->value) && in_array($dataObject['value'], $attribute->value)) checked @endif>
{{$dataObject['content']}}
</label>
@endforeach
</div>
</div>