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