@extends('admin.include.main') @section('content') {{-- @if ($errors)
{{ $errors}}
@endif --}}
Select Parent:
First Name*
@if ($errors->has('fname'))
{{ $errors->first('fname') }}
@endif
Middle Name
Last Name*
@if ($errors->has('lname'))
{{ $errors->first('lname') }}
@endif
Address:*
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
Date of birth:*
@if ($errors->has('dob'))
{{ $errors->first('dob') }}
@endif
Phone number:*
@if ($errors->has('phone_no'))
{{ $errors->first('phone_no') }}
@endif
Gender:*
Blood Group: *
@if ($errors->has('blood_group'))
{{ $errors->first('blood_group') }}
@endif
Email:
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
Nationality:*
@if ($errors->has('nationality'))
{{ $errors->first('nationality') }}
@endif
Religion:*
@if ($errors->has('religion'))
{{ $errors->first('religion') }}
@endif

Admission Information


Admission Date:*
@if ($errors->has('admission_date'))
{{ $errors->first('admission_date') }}
@endif
Class*
@if ($errors->has('class_id'))
{{ $errors->first('class_id') }}
@endif
Section*

Upload Image


Profile image



Account Information


Please Select class to show Account Details


@csrf
Fathers Full Name:*
@if ($errors->has('father_name'))
{{ $errors->first('father_name') }}
@endif
Fathers Profession:
@if ($errors->has('father_profession'))
{{ $errors->first('father_profession') }}
@endif
Father's Mobile Number:*
@if ($errors->has('father_phone_no'))
{{ $errors->first('father_phone_no') }}
@endif
Mothers Full Name:*
@if ($errors->has('mother_name'))
{{ $errors->first('mother_name') }}
@endif
Mothers Profession:
@if ($errors->has('mother_profession'))
{{ $errors->first('mother_profession') }}
@endif
Mother's Mobile Number:
@if ($errors->has('mother_phone_no'))
{{ $errors->first('mother_phone_no') }}
@endif
Local Guardian Name:
@if ($errors->has('local_guardian_name'))
{{ $errors->first('local_guardian_name') }}
@endif
Local Guardian's Profession:
@if ($errors->has('local_guardian_profession'))
{{ $errors->first('local_guardian_profession') }}
@endif
Local Guardian's Mobile Number:*
@if ($errors->has('local_guardian_phone'))
{{ $errors->first('local_guardian_phone') }}
@endif
Parents Address:*
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
Local Guardian's Address:
@if ($errors->has('guardian_address'))
{{ $errors->first('guardian_address') }}
@endif
Parents Email:*
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@endsection