Files
newznab-tmux/resources/views/components/form/group.blade.php
T
2025-10-07 16:09:38 +02:00

17 lines
375 B
PHP

@props(['label', 'for', 'help' => null])
<div class="space-y-1">
@if($label)
<x-label :for="$for" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">
{{ $label }}
</x-label>
@endif
{{ $slot }}
@if($help)
<small class="text-gray-600 dark:text-gray-400 text-xs">{{ $help }}</small>
@endif
</div>