@props([ 'label', 'name', 'type' => 'text', 'placeholder' => '', 'required' => false, 'tooltip' => null, ])
whereStartsWith('wire:model') }} {{-- Only use old() for non-password fields --}} @if($type !== 'password') value="{{ old($name) }}" @endif @if($tooltip) data-bs-toggle="tooltip" data-bs-placement="top" title="{{ $tooltip }}" @endif {{ $attributes->except(['wire:model', 'wire:model.live', 'wire:model.lazy', 'wire:model.blur']) }} /> @error($name) {{ $message }} @enderror