@if ($i == 0)
{{ html()->label('Symbol')->class('form-label')->for('symbol[]') }}
@endif
{{ html()->text('symbol[]')->value($data[$i]['symbol'] ?? old('symbol[]'))->class('form-control')->placeholder('Symbol') }}
@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