@if($label)
{{ $label }} @if($attributes->get('required')) * @endif
@endif @if($prepend || $append)
@endif @if($prepend)
{{ $prepend }}
@endif
except(['wire:model', 'wire:model.live'])->class([ "select select-bordered select-primary w-full h-fit pe-16 pb-1 pt-1.5 inline-block cursor-pointer relative flex-1", 'border border-dashed' => $isReadonly(), 'select-error' => $errors->has($errorFieldName()), 'rounded-s-none' => $prepend, 'rounded-e-none' => $append, 'ps-10' => $icon, ]) }} > @if($icon) @endif @if(! $isReadonly() && ! $isDisabled()) @endif @if($compact)
{{ $compactText }}
@else @endif
  @if (!$compact && $attributes->has('placeholder')) {{ $attributes->get('placeholder') }} @endif
@if($append)
{{ $append }}
@endif @if($prepend || $append)
@endif
@if($allowAll)
{{ $allowAllText }}
{{ $removeAllText }}
@endif
{{ $noResultText }}
@foreach($options as $option)
@if($item) {{ $item($option) }} @else @endif @if($selection) @endif
@endforeach
@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