@props(['data']) @php $loopCount = max(1, count($data)); @endphp
Custom Fields
@for ($i = 0; $i < $loopCount; $i++)
@if ($i == 0) {{ html()->label('Icon')->class('form-label')->for('icon[]') }} @endif {{ html()->text('icon[]')->value($data[$i]['icon'] ?? old('icon[]'))->class('form-control')->placeholder('Icon class') }}
@if ($i == 0) {{ html()->label('Title')->class('form-label')->for('key[]') }} @endif {{ html()->text('key[]')->value($data[$i]['key'] ?? old('key[]'))->class('form-control')->placeholder('Enter Title') }}
@if ($i == 0) {{ html()->label('Content')->class('form-label')->for('value[]') }} @endif {{ html()->textarea('value[]')->value($data[$i]['value'] ?? old('value[]'))->class('form-control')->placeholder('Enter Content')->rows(1) }}
@if ($i == 0) @endif
@endfor