@extends('layouts.header') @section('content') Dashboard Student List Edit Student Details Edit Student Details @csrf @method('PUT') Name of the Student: Age: Date of Birth: Gender: gender) == 'male' ? 'checked' : '' }} required> Male gender) == 'female' ? 'checked' : '' }} required> Female Student Aadhar Number: Name of the Parents/Guardian: Parents' Occupation: Parents' Income: Parent Aadhar Number: Address for Communication: {{ old('communication_address', $student->communication_address) }} Contact Phone Number: Extra Phone Number: Educational Details Class: Select Class @for ($class = 1; $class <= 12; $class++) student_class == $class ? 'selected' : '' }}> {{ convertToRoman($class) }} @endfor Std: Select Standard student_std == 'A' ? 'selected' : '' }}>A student_std == 'B' ? 'selected' : '' }}>B student_std == 'C' ? 'selected' : '' }}>C student_std == 'D' ? 'selected' : '' }}>D student_std == 'E' ? 'selected' : '' }}>E student_std == 'F' ? 'selected' : '' }}>F Medium of Instruction: Select Medium of Instruction medium_of_instruction) == 'english' ? 'selected' : '' }}> English medium_of_instruction) == 'tamil' ? 'selected' : '' }}> Tamil School Name: School Name @foreach ($schools as $school) school_id) == $school->id ? 'selected' : '' }}> {{ $school->school_name }} @endforeach {{-- School Name: Select School {{ $student->school->school_name }} @foreach ($schools as $school) @if ($student->school->school_name !== $school->school_name) school_id) == $school->Id ? 'selected' : '' }}> {{ $school->school_name }} @endif @endforeach --}} School Fees: School Details: {{ old('school_details', $student->school_details) }} Image of Student: @if ($student->student_image) @endif Update @endsection @push('scripts') @endpush