input.blade.php 422 B

12345678910111213141516
  1. @extends('adminlte::components.form.input-group-component')
  2. {{-- Set errors bag internallly --}}
  3. @php($setErrorsBag($errors ?? null))
  4. {{-- Set input group item section --}}
  5. @section('input_group_item')
  6. {{-- Input --}}
  7. <input id="{{ $id }}" name="{{ $name }}"
  8. value="{{ $getOldValue($errorKey, $attributes->get('value')) }}"
  9. {{ $attributes->merge(['class' => $makeItemClass()]) }}>
  10. @overwrite