mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
18 lines
382 B
PHP
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>
|
|
|