@extends ('core::layouts.master') @section ('content') @include ('core::components.export-import.importer-show-errors', ['printLimit' => 5])

Below are {{ count($data['rawData']) }} {!! count($data['rawData']) > $maxShown ? '('.$maxShown.' shown)' : '' !!} data that will be imported. Please make sure everything is okay before start the import by clicking the button below

{{ csrf_field() }} @if(isset($back_url)) Cancel Import @endif
@foreach($data['rawHeader'] as $headerLabel) @endforeach @foreach($data['rawData'] as $row) @foreach($row as $cell) @endforeach @if($loop->iteration >= $maxShown) @break @endif @endforeach
{{ $headerLabel }}
{{ $cell }}
...
@stop