@extends('Admin.layout.master') @section('title', 'Add Student') @section('content')
Add Student
@csrf
@if ($errors->has('first_name'))

{{ $errors->first('first_name') }}

@endif
@if ($errors->has('last_name'))

{{ $errors->first('last_name') }}

@endif
@if ($errors->has('registration_date'))

{{ $errors->first('registration_date') }}

@endif
@if ($errors->has('student_mobile_no'))

{{ $errors->first('student_mobile_no') }}

@endif
@if ($errors->has('parent_name'))

{{ $errors->first('parent_name') }}

@endif
@if ($errors->has('parent_mobile_no'))

{{ $errors->first('parent_mobile_no') }}

@endif
@if ($errors->has('date_of_birth'))

{{ $errors->first('date_of_birth') }}

@endif
@if ($errors->has('blood_group'))

{{ $errors->first('blood_group') }}

@endif
@if ($errors->has('address'))

{{ $errors->first('address') }}

@endif
@endsection