8 lines
277 B
PHP
8 lines
277 B
PHP
@props(['label', 'name', 'error' => null])
|
|
<div class="mb-4">
|
|
<label for="{{ $name }}" class="block text-sm font-medium text-gray-700 mb-1">{{ $label }}</label>
|
|
{{ $slot }}
|
|
@if($error)
|
|
<p class="mt-1 text-xs text-red-600">{{ $error }}</p>
|
|
@endif
|
|
</div>
|