@extends('layouts.app') @section('title', 'Add Student') @section('content') ITOT Lucknow LMS Add Student
✅ Student created successfully! Redirecting...
{{-- ── Left Panel ── --}}
Logo

GOVERNMENT ITI,
ALIGANJ, LUCKNOW

Leave Management Portal

Add Student

Register a new student to
the system

{{-- PHOTO UPLOAD --}}
Preview
Upload Photo
{{-- ── Right Panel ── --}}

Add New Student

Fill in student details to register

@if ($errors->any())
⚠️ Please correct the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{-- Student Name --}}
{{-- Email --}}
{{-- Mobile --}}
{{-- Gender --}}
{{-- CITS No --}}
{{-- Branch / Trade --}}
Select trade
@foreach($trades as $trade)
{{ $trade->trade_name }}
@endforeach
{{-- Course --}}
{{-- Shift --}}
{{-- Address --}}
{{-- Parent Mobile --}}
{{-- Parent Email --}}
{{-- Hostel Details --}}

← Back to Student List

@endsection