Added and implemented a form-check input component
This commit is contained in:
parent
1c90ff116e
commit
5f18ccff2c
7
resources/views/components/form-check.blade.php
Normal file
7
resources/views/components/form-check.blade.php
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<div class="form-check mb-2">
|
||||||
|
<input class="form-check-input" name="{{$name}}" id="{{$id ?? 'formCheck'}}" type="checkbox"
|
||||||
|
value="1" @if(isset($checked) && $checked === '1') checked @endif>
|
||||||
|
<label class="form-check-label">
|
||||||
|
{{$text}}
|
||||||
|
</label>
|
||||||
|
</div>
|
|
@ -225,14 +225,7 @@
|
||||||
</x-labels-select>
|
</x-labels-select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-check">
|
<x-form-check text="Allow this data to be public, restrict values in settings" name="show_public"></x-form-check>
|
||||||
<input class="form-check-input" name="show_public" type="checkbox"
|
|
||||||
value="1">
|
|
||||||
<label class="form-check-label">
|
|
||||||
Allow this data to be public, restrict values
|
|
||||||
in settings
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-lg-4">
|
<div class="col-12 col-lg-4">
|
||||||
<x-submit-button>Insert server</x-submit-button>
|
<x-submit-button>Insert server</x-submit-button>
|
||||||
|
|
|
@ -250,23 +250,12 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row mt-2">
|
<div class="row mt-2">
|
||||||
<div class="col-12 col-lg-6 mb-4">
|
<div class="col-12 col-lg-6 mb-4">
|
||||||
<div class="form-check">
|
<x-form-check text="I still have this server" name="is_active"
|
||||||
<input class="form-check-input" name="is_active" type="checkbox"
|
checked="{{$server_data->active}}"></x-form-check>
|
||||||
value="1" {{ ($server_data->active === 1) ? 'checked' : '' }}>
|
|
||||||
<label class="form-check-label">
|
|
||||||
I still have this server
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-lg-6 mb-4">
|
<div class="col-12 col-lg-6 mb-4">
|
||||||
<div class="form-check">
|
<x-form-check text="Allow some of this data to be public" name="show_public"
|
||||||
<input class="form-check-input" name="show_public" type="checkbox"
|
checked="{{$server_data->show_public}}"></x-form-check>
|
||||||
value="1" {{ ($server_data->show_public === 1) ? 'checked' : '' }}>
|
|
||||||
<label class="form-check-label">
|
|
||||||
Allow this data to be public <a href="{{route('settings.index')}}">restrict values
|
|
||||||
here</a>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row mt-2">
|
<div class="row mt-2">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user