@extends('layouts.app') @section('title', 'Bulk Student Upload') @section('page-title', 'Bulk Student Upload') @section('content')

Upload multiple students at once using an Excel template.

Back to Students
{{-- Messages --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if(session('upload_errors'))

Some rows had issues:

@endif {{-- Step 1: Download Template --}}

1 Download Template

Download the Excel template, fill in student details, and upload it back. The template includes a class reference sheet and instructions.

{{-- Step 2: Upload File --}}

2 Upload Filled Template

@csrf

Max 5MB, .xlsx or .xls format

Used when Class ID is empty in a row

{{-- Tips --}}

Tips

{{-- Recently Created --}} @if($recentStudents->count())

Recently Added Students

@foreach($recentStudents as $s)
{{ $s->name }} {{ $s->email }}
{{ $s->created_at->diffForHumans() }}
@endforeach
@endif
@endsection