mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
13 lines
448 B
PHP
13 lines
448 B
PHP
{{--
|
|
$name
|
|
$value
|
|
$checked
|
|
$label
|
|
--}}
|
|
<label custom-checkbox class="toggle-switch @if($errors->has($name)) text-neg @endif">
|
|
<input type="checkbox" name="{{$name}}" value="{{ $value }}" @if($checked) checked="checked" @endif>
|
|
<span tabindex="0" role="checkbox"
|
|
aria-checked="{{ $checked ? 'true' : 'false' }}"
|
|
class="custom-checkbox text-primary">@icon('check')</span>
|
|
<span class="label">{{$label}}</span>
|
|
</label> |