{{ __('Import :label', ['label' => $label]) }}

{{ __('Import :label', ['label' => $label]) }}

{{ __('Every row is validated before anything is saved. If any row fails, nothing is imported — fix the file and re-upload.') }}

@if (session('status'))
{{ session('status') }}
@endif @if (session('importErrors'))

{{ __('Import failed — no rows were saved.') }}

    @foreach (session('importErrors') as $error)
  • @if ($error['row'] > 0) {{ __('Row :row', ['row' => $error['row']]) }}: @endif {{ implode(' ', $error['messages']) }}
  • @endforeach
@endif

{{ __('1. Download the template') }}

{{ __('Column headers must match exactly.') }}

{{ __('Download Template') }}

{{ __('2. Upload your file') }}

@csrf @error('file')

{{ $message }}

@enderror
← {{ __('Back to :label', ['label' => $backLabel]) }}