Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit 8a92f93

Browse files
committed
fix syntax error
1 parent cc8b490 commit 8a92f93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/components/choice/checkbox-or-radio.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="choice-container relative flex items-start">
22
<div class="choice-input flex items-center h-5">
3-
<input {!! $attributes->class([$type === 'checkbox' ? 'form-checkbox h-4 w-4 text-blue-600 border-blue-gray-300 rounded focus:ring-blue-500' : 'form-radio h-4 w-4 text-blue-600 border-blue-gray-300 focus:ring-blue-500')->except('type') !!}
3+
<input {!! $attributes->class($type === 'checkbox' ? 'form-checkbox h-4 w-4 text-blue-600 border-blue-gray-300 rounded focus:ring-blue-500' : 'form-radio h-4 w-4 text-blue-600 border-blue-gray-300 focus:ring-blue-500')->except('type') !!}
44
@if ($name) name="{{ $name }}" @endif
55
@if ($id) id="{{ $id }}" @endif
66
type="{{ $type }}"

0 commit comments

Comments
 (0)