@extends('layouts.app') @section('content')
Student Registration
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('fathers_name')) {{ $errors->first('fathers_name') }} @endif
@if ($errors->has('mothers_name')) {{ $errors->first('mothers_name') }} @endif
@if ($errors->has('ssc_roll')) {{ $errors->first('ssc_roll') }} @endif
@if ($errors->has('mobile_no')) {{ $errors->first('mobile_no') }} @endif
@if ($errors->has('home_district')) {{ $errors->first('home_district') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('present_address')) {{ $errors->first('present_address') }} @endif
@if ($errors->has('permanent_address')) {{ $errors->first('permanent_address') }} @endif
@if ($errors->has('ssc_board')) {{ $errors->first('ssc_board') }} @endif
@if ($errors->has('school_name')) {{ $errors->first('school_name') }} @endif
@if ($errors->has('ssc_passing_year')) {{ $errors->first('ssc_passing_year') }} @endif
@if ($errors->has('ssc_gpa')) {{ $errors->first('ssc_gpa') }} @endif
@if ($errors->has('hsc_board')) {{ $errors->first('hsc_board') }} @endif
@if ($errors->has('college_name')) {{ $errors->first('college_name') }} @endif
@if ($errors->has('hsc_passing_year')) {{ $errors->first('hsc_passing_year') }} @endif
@if ($errors->has('hsc_gpa')) {{ $errors->first('hsc_gpa') }} @endif
@if ($errors->has('branch_name')) {{ $errors->first('branch_name') }} @endif
@if ($errors->has('hsc_registration_no')) {{ $errors->first('hsc_registration_no') }} @endif
@endsection