13 lines
243 B
PHP
13 lines
243 B
PHP
@props([
|
|
'for',
|
|
'required' => false,
|
|
])
|
|
|
|
<label for="{{ $for }}" class="label">
|
|
<span class="label-text">
|
|
{{ $slot }}
|
|
@if ($required)
|
|
<span class="text-error">*</span>
|
|
@endif
|
|
</span>
|
|
</label> |