vito/resources/views/components/input-label.blade.php
2024-03-24 09:56:34 +01:00

10 lines
174 B
PHP

@props([
"value",
])
<label
{{ $attributes->merge(["class" => "block font-medium text-sm text-gray-700 dark:text-gray-300"]) }}
>
{{ $value ?? $slot }}
</label>