@extends('backend.student.layouts.right_side_bar') @section('studentBody')
@if(session('success'))
@endif @if(session('error'))
@endif @if($errors->any())
@endif
{{csrf_field()}}
First Name *
Middle Name
Last Name *
Gender *
Date of Birth *
Marital Status
Profile Photo
Mobile No.*
Country *
State/Province *
District *
MNP/NP/VDC
Tole Name
@foreach($student->degrees as $key=>$degree) @endforeach
SN Degree Institutions Year Action
{{++$key}} {{$degree->course->name}} {{isset($degree->client)?$degree->client->company_name:''}} {{$degree->pass_year}}
{{csrf_field()}}
@foreach($student->trainings as $key=>$training) @endforeach
SN Training Name Institutions Duration Action
{{++$key}} {{$training->name}} {{$training->institute}} {{$training->start_date}} to {{$training->end_date}}
{{csrf_field()}}
@foreach($student->jobs as $key=>$job) @endforeach
SN Title Company Duration Action
{{++$key}} {{$job->job_title}} {{$job->company}} {{$job->start_date}} to @if(isset($job->end_date)) {{$job->end_date}} @else Till Date @endif
{{csrf_field()}}
@endsection @section('script') {{----}} {{----}} @endsection