@endif
@if($prepend)
{{ $prepend }}
@endif
whereDoesntStartWith('class') }}
{{ $attributes->class([
'select select-primary w-full font-normal',
'ps-10' => ($icon),
'h-14' => ($inline),
'pt-3' => ($inline && $label),
'rounded-s-none' => $prepend,
'rounded-e-none' => $append,
'border border-dashed' => $attributes->has('readonly') && $attributes->get('readonly') == true,
'select-error' => $errors->has($errorFieldName())
])
}}
>
@if($placeholder)
{{ $placeholder }}
@endif
@foreach ($options as $option)
{{ data_get($option, $optionLabel) }}
@endforeach
@if($icon)
@endif
@if($iconRight)
@endif
@if($label && $inline)
{{ $label }}
@endif
@if($append)
{{ $append }}
@endif
@if($prepend || $append)
@endif
@if(!$omitError && $errors->has($errorFieldName()))
@foreach($errors->get($errorFieldName()) as $message)
@foreach(Arr::wrap($message) as $line)