{{-- resources/views/admin/bulk-imports/create.blade.php --}} @extends('layouts.app') @section('title', 'New Bulk Import') @section('content')

New Bulk Import

Upload a CSV file to import users in bulk

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Import Configuration

📄

Drop your CSV file here or click to browse

Maximum file size: 10MB

Need a template?

Download our CSV template with sample data and required column headers.

📥 Download CSV Template
Cancel
@endsection