@props([
'name',
'label' => null,
'options' => [],
'value' => null,
'placeholder' => '— Select —',
'hint' => null,
'required' => false,
])
@php
$id = $attributes->get('id', $name);
$current = old($name, $value);
$error = $errors->first($name);
@endphp
only('class') }}>
@if ($label)
@endif
@if ($hint && ! $error)
{{ $hint }}
@endif
@if ($error)
{{ $error }}
@endif