@extends(backpack_view('blank')) @section('header')

Import {!! $crud->getHeading() ?? $crud->entity_name_plural !!} Import {!! $crud->getSubheading() ?? '' !!}

@endsection @section('content')
{{ csrf_field() }}
@if ($errors->has('csv_file')) {{ $errors->first('csv_file') }} @endif
  1. Upload a CSV in the following format: Download
  2. @foreach($instructions as $idx => $instruction)
  3. {{$instruction}}
  4. @endforeach
@endsection @section('after_scripts') @endsection