administrcms/form

View on GitHub
src/Views/checkboxgroup.blade.php

Summary

Maintainability
A
0 mins
Test Coverage
<label for="{{ $field->getName() }}">{{ $field->getLabel() }}</label>
@foreach($field->checkboxes() as $checkbox)
    <label class="checkbox-inline">{!! $checkbox->render() !!}</label>
@endforeach
<span>{{ $errors->first($field->getName()) }}</span>