@if($label && !$inline)
@endif
merge(['type' => 'date'])
->class([
"input input-primary w-full peer appearance-none",
'ps-10' => ($icon),
'h-14' => ($inline),
'pt-3' => ($inline && $label),
'border border-dashed' => $attributes->has('readonly') && $attributes->get('readonly') == true,
'input-error' => $errors->has($errorFieldName())
])
}}
/>
@if($icon)
@endif
@if($iconRight)
@endif
@if($label && $inline)
@endif
@if(!$omitError && $errors->has($errorFieldName()))
@foreach($errors->get($errorFieldName()) as $message)
@foreach(Arr::wrap($message) as $line)
{{ $line }}
@break($firstErrorOnly)
@endforeach
@break($firstErrorOnly)
@endforeach
@endif
@if($hint)
{{ $hint }}
@endif