@extends('admin.layout') @section('title', 'Register Student - GRADELY') @section('content')
@if (session('success'))
{{ session('success') }}
@endif @if (session('warning'))
{{ session('warning') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if (session('info'))
{{ session('info') }}
@endif @if ($errors->any())
@endif

Register New Student

Add a new student to the system. Login credentials will be sent to their email.

@csrf
Login credentials will be sent to the student's email address.

📥 Bulk Register Students (CSV)

Upload a CSV file (.csv) to register multiple students at once

📥 Download Template
@csrf
@endsection