@props([ 'hasLabel' => true, 'labelText' => '', 'name' => '', 'placeholder' => '', 'options' => [], 'errorKey' => null, ])
@if ($hasLabel) {{ $labelText }} @if (!empty($labelTextBrackets)) ({{ $labelTextBrackets }}) @endif @endif @if (isset($feedbackInfo))
{{ $feedbackInfo }}
@endif
@if(count($options))
@foreach($options as $option)
{{ $option['value'] }}
@endforeach
@endif
@if($errors->has($errorKey ?? $name)) @error($errorKey ?? $name)
{{ $message }}
@enderror @endif