BookStack/resources/views/components/custom-checkbox.blade.php

11 lines
334 B
PHP
Raw Normal View History

{{--
$name
$value
$checked
$label
--}}
<label class="toggle-switch @if($errors->has($name)) text-neg @endif">
<input type="checkbox" name="{{$name}}" value="{{ $value }}" @if($checked) checked="checked" @endif>
<span class="custom-checkbox text-primary">@icon('check')</span>
<span class="label">{{$label}}</span>
</label>