mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
14 lines
533 B
PHP
14 lines
533 B
PHP
|
|
||
|
@foreach($roles as $role)
|
||
|
<label>
|
||
|
<input value="{{ $role->id }}" id="{{$name}}-{{$role->name}}" type="checkbox" name="{{$name}}[{{$role->name}}]"
|
||
|
@if($errors->has($name)) class="neg" @endif
|
||
|
@if(old($name . '.' . $role->name) || (!old('name') && isset($model) && $model->hasRole($role->name))) checked="checked" @endif
|
||
|
>
|
||
|
{{ $role->display_name }}
|
||
|
</label>
|
||
|
@endforeach
|
||
|
|
||
|
@if($errors->has($name))
|
||
|
<div class="text-neg text-small">{{ $errors->first($name) }}</div>
|
||
|
@endif
|