@extends('sendportal::layouts.app') @push('css') @endpush @section('heading') {{ __('Import Subscribers') }} @stop @section('content') @if (isset($errors) and count($errors->getBags()))
    @foreach ($errors->getBags() as $key => $bag) @foreach($bag->all() as $error)
  • {{ $key }} - {{ $error }}
  • @endforeach @endforeach
@endif @component('sendportal::layouts.partials.card') @slot('cardHeader', __('Import via CSV file')) @slot('cardBody')

{{ __('CSV format') }}: {{ __('Format your CSV the same way as the example below (with the first title row). Use the ID or email columns if you want to update a Subscriber instead of creating it.') }}

{{ __('id') }} {{ __('email') }} {{ __('first_name') }} {{ __('last_name') }}
me@sendportal.io Myself Included
@csrf
{{ __('Back') }}
@endSlot @endcomponent @stop @push('js') @endpush