<tbody id="quote-section">
@forelse(old('quote_sections', []) as $index => $data)
@include('admin.quotes.quote_sections_row', [
'index' => $index
])
@empty
@foreach($quote->quote_sections as $item)
@include('admin.quotes.quote_sections_row', [
'index' => 'id-' . $item->id,
'field' => $item
])
@endforeach
@endforelse
</tbody>