$checked
$label
--}}
-<label class="toggle-switch @if($errors->has($name)) neg @endif">
+<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 class="custom-checkbox text-primary">@icon('check')</span>
+ <span tabindex="0" role="checkbox"
+ aria-checked="{{ $checked ? 'true' : 'false' }}"
+ class="custom-checkbox text-primary">@icon('check')</span>
<span class="label">{{$label}}</span>
</label>
\ No newline at end of file