@extends('layouts.default') @section('content')

Show Admission Form Data

@include('layouts.flash')
Name {!! $target->name !!} Gender {!! Str::ucfirst($target->gender) !!} Email {!! $target->email !!}
Phone {!! $target->phone !!} Father's Name {!! $target->father_name !!} Mother's Name {!! $target->mother_name !!}
Date of Birth {!! $target->dob !!} Subject {{ \App\Models\School::where('id', $target->subject)->first()->name }}
SSC Institute Name {!! $target->ssc_institute !!} SSC Passing Year {!! $target->ssc_passing_year !!} SSC GPA {!! $target->ssc_gpa !!}
HSC / Diploma Institute Name {!! $target->hsc_institute !!} HSC / Diploma Passing Year {!! $target->hsc_passing_year !!} HSC / Diploma GPA {!! $target->hsc_gpa !!}
Bachelor Institute Name {!! $target->b_institute !!} Bachelor Passing Year {!! $target->b_passing_year !!} Bachelor CGPA {!! $target->b_gpa !!}
Note {!! $target->message !!}
@stop