Skip to content

Commit

Permalink
Always render value if it is set
Browse files Browse the repository at this point in the history
  • Loading branch information
rawilk committed Mar 23, 2023
1 parent e60a8e4 commit 0e9be2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@endif
{!! $ariaDescribedBy() !!}
{{ $extraAttributes ?? '' }}
@if ($value && ! $hasBoundModel()) value="{{ $value }}" @endif
@if ($value) value="{{ $value }}" @endif
@checked($checked && ! $hasBoundModel())
/>
</div>
Expand Down

0 comments on commit 0e9be2a

Please sign in to comment.