]> BookStack Code Mirror - bookstack/blob - resources/views/components/toggle-switch.blade.php
Update settings.php
[bookstack] / resources / views / components / toggle-switch.blade.php
1 <label toggle-switch="{{$name}}" custom-checkbox class="toggle-switch">
2     <input type="hidden" name="{{$name}}" value="{{$value?'true':'false'}}"/>
3     <input type="checkbox" @if($value) checked="checked" @endif>
4     <span tabindex="{{ $tabindex ?? '0' }}"
5           role="checkbox"
6           aria-checked="{{ $value ? 'true' : 'false' }}"
7           class="custom-checkbox text-primary">@icon('check')</span>
8     <span class="label">{{ $label }}</span>
9 </label>