@props([
'label' => null,
'name' => null,
'type' => 'text',
'error' => null,
'hint' => null,
])
@if ($label)
@endif
class([
'w-full rounded-lg border bg-surface px-3 h-10 text-sm text-text placeholder:text-muted transition duration-150 ease-out focus-visible:ring-2 focus-visible:ring-primary focus-visible:outline-none',
'border-border' => ! $error,
'border-danger focus-visible:ring-danger' => $error,
]) }}
>
@if ($error)
{{ $error }}
@elseif ($hint)
{{ $hint }}
@endif