@extends('backpack::layout') @section('header')

{!! $crud->getHeading() ?? $crud->entity_name_plural !!} {!! $crud->getSubheading() ?? 'Import Mapping for '.$crud->entity_name !!}.

@endsection @section('content')
{{ csrf_field() }}
@foreach ($csv_data as $row) @foreach ($row as $key => $value) @endforeach @endforeach @foreach ($csv_data[0] as $key => $value) @endforeach
{{ $value }}
Back
@endsection @section('after_styles') @stack('crud_fields_styles') @endsection @section('after_scripts') @stack('crud_fields_scripts') @endsection