Skip to content

Commit

Permalink
Update checkbox.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
bebo925 authored Apr 3, 2024
1 parent 1ce9869 commit 26c4729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/components/input/checkbox.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@props(['label' => '', 'disabled' => false, 'name' => md5(uniqid(rand(), true)), 'id' => md5(uniqid(rand(), true)), 'error' => null])
<div>
<label for="{{ $id }}" class="flex items-center">
<input {{ $attributes->class([
<input @disabled($disabled) {{ $attributes->class([
'form-checkbox rounded transition ease-in-out duration-100 border-secondary-300 text-primary-600 focus:ring-primary-600 focus:border-primary-400'
])->merge([
'type' => 'checkbox',
Expand Down

0 comments on commit 26c4729

Please sign in to comment.