{{-- Setup the internal errors bag for the component --}} @php $setErrorsBag($errors); @endphp {{-- Setup the input group component structure --}}
{{-- Input label --}} @isset($label) @endisset {{-- Input group --}}
{{-- Input prepend slot --}} @isset($prependSlot)
{{ $prependSlot }}
@endisset {{-- Input group item --}} @yield('input_group_item') {{-- Input append slot --}} @isset($appendSlot)
{{ $appendSlot }}
@endisset
{{-- Error feedback --}} @if($isInvalid() && ! isset($disableFeedback)) {{ $errors->first($errorKey) }} @endif {{-- Bottom slot --}} @isset($bottomSlot) {{ $bottomSlot }} @endisset
{{-- Extra style customization for invalid input groups --}} @once @push('css') @endpush @endonce