@extends('layouts.admin') @section('title', 'Map CSV columns') @section('admin')

Map CSV columns

Tell us which column holds each field. We'll show 10 preview rows below.

@csrf
@php $am = $autoMap ?? ['email' => 0, 'first_name' => null, 'last_name' => null]; @endphp
Apply tags to all imported subscribers
@foreach($tags as $t) @endforeach
Preview (first 10 rows)
@foreach($headers as $i => $h)@endforeach @foreach($rows as $r) @foreach($headers as $i => $h)@endforeach @endforeach
{{ $i }}: {{ $h }}
{{ $r[$i] ?? '' }}
Start over
@endsection