@extends('frontend.layouts.noipunno') @section('content')
@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('import_errors')) @foreach (Session::get('import_errors') as $failure) @endforeach @endif
@foreach ($students as $student) @endforeach
শিক্ষার্থীর রোল শিক্ষার্থীর নাম শ্রেণী মাতার নাম পিতার নাম জন্ম নিবন্ধন নং জন্ম তারিখ Action
{{ @$student->roll }} {{ @$student->student_name_en ?? @$student->student_name_bn }} @if (@$student->class == 6) Class Six @elseif(@$student->class == 7) Class Seven @elseif(@$student->class == 8) ClassEight @elseif(@$student->class == 9) Class Nine @else Class Ten @endif {{ @$student->mother_name_bn }} {{ @$student->father_name_bn }} {{ @$student->brid }} @if ($student->date_of_birth) {{ date('j F, Y', strtotime(@$student->date_of_birth)) }} @endif
{{-- --}}
{{ $students->links('pagination::bootstrap-5') }}

শিক্ষার্থী যুক্ত করুন

{{ @$institute->institute_name }}
@csrf
@if ($errors->has('class')) {{ $errors->first('class') }} @endif
@if ($errors->has('registration_year')) {{ $errors->first('registration_year') }} @endif
@if ($errors->has('roll')) {{ $errors->first('roll') }} @endif
@if ($errors->has('student_name_bn')) {{ $errors->first('student_name_bn') }} @endif
@if ($errors->has('student_name_en')) {{ $errors->first('student_name_en') }} @endif
@if ($errors->has('brid')) {{ $errors->first('brid') }} @endif
@if ($errors->has('date_of_birth')) {{ $errors->first('date_of_birth') }} @endif
@if ($errors->has('gender')) {{ $errors->first('gender') }} @endif
@if ($errors->has('religion')) {{ $errors->first('religion') }} @endif
@if ($errors->has('student_mobile_no')) {{ $errors->first('student_mobile_no') }} @endif
@if ($errors->has('mother_name_bn')) {{ $errors->first('mother_name_bn') }} @endif
@if ($errors->has('mother_name_en')) {{ $errors->first('mother_name_en') }} @endif
@if ($errors->has('father_name_bn')) {{ $errors->first('father_name_bn') }} @endif
@if ($errors->has('father_name_en')) {{ $errors->first('father_name_en') }} @endif
@if ($errors->has('father_mobile_no')) {{ $errors->first('father_mobile_no') }} @endif
@if ($errors->has('mother_mobile_no')) {{ $errors->first('mother_mobile_no') }} @endif
@if ($errors->has('guardian_name_bn')) {{ $errors->first('guardian_name_bn') }} @endif
@if ($errors->has('guardian_mobile_no')) {{ $errors->first('guardian_mobile_no') }} @endif
@if ($errors->has('class')) {{ $errors->first('class') }} @endif
@if ($errors->has('registration_year')) {{ $errors->first('registration_year') }} @endif
@csrf
{{-- --}} @endsection