Files
newznab-tmux/resources/views/components/form/group.blade.php
T
2026-02-24 21:51:06 +01:00

18 lines
382 B
PHP

@blaze
@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>