{{-- STANDARD LABEL --}} @if($label && !$inline) {{ $label }} @if($attributes->get('required')) * @endif @endif {{-- ERROR --}} @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 {{-- HINT --}} @if($hint)
{{ $hint }}
@endif
{{-- OPTIONS LIST --}}
{{-- SELECT ALL --}} @if($allowAll)
{{ $allowAllText }}
{{ $removeAllText }}
@endif {{-- NO RESULTS --}}
{{ $noResultText }}
@foreach($options as $option)
{{-- ITEM SLOT --}} @if($item) {{ $item($option) }} @else @endif {{-- SELECTION SLOT --}} @if($selection) @endif
@endforeach