Added disabled to components, new components, button and modal

This commit is contained in:
2024-07-25 13:52:29 +10:00
parent f393813311
commit 4a4cf3c5bf
13 changed files with 69 additions and 12 deletions

View File

@@ -0,0 +1,5 @@
<x-leenooks::form.base {{ $attributes }}>
<div class="form-check text-right">
<input type="checkbox" class="form-check-input {{ $class ?? ''}}@error($old ?? $name) is-invalid @enderror" id="{{ $id ?? $name }}" name="{{ $name }}" value="{{ old($old ?? $name,$value ?? '') }}" @checked(isset($checked)) @readonly(isset($readonly)) @required(isset($required)) @disabled(isset($disabled))>
</div>
</x-leenooks::form.base>