@extends('layouts.main') @section('content')
{{ csrf_field() }}

@if (!empty($old)) @foreach ($old as $index => $item) @include('partials/row', [ 'index' => $index, 'item' => $item ]) @endforeach @include('partials/row', [ 'index' => count($old), 'item' => [] ]) @else @include('partials/row', [ 'index' => 0]) @endif
@include('partials/row', [ 'id' => 'add-template', 'htmlClass' => 'invisible' ]) @endsection