@props([ 'type' => 'text', 'name', 'id' => null, 'label' => null, 'value' => null, 'placeholder' => null, 'required' => false, 'disabled' => false, 'icon' => null, ]) @php $id = $id ?? $name; @endphp
@if($label) @endif
@if($icon)
@endif merge(['class' => 'block w-full rounded-lg border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-white shadow-sm focus:border-indigo-500 focus:ring-indigo-500 sm:text-sm' . ($icon ? ' pl-10' : '')]) }} {{ $required ? 'required' : '' }} {{ $disabled ? 'disabled' : '' }} >