@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['headerMap'] as $headerLabel => $headerName) @endforeach @foreach($data['rawData'] as $row) @foreach($data['headerMap'] as $headerLabel => $headerName) @if($index > -1) @else @endif @endforeach @if($loop->iteration >= $maxShown) @break @endif @endforeach
{{ ucwords($headerLabel) }}
{{ $row[$index] }}-
...
@stop