Settings

My Account Settings

Account Info
First Name {{ auth()->user()->fname }}
Middle Name {{ auth()->user()->mname }}
Last Name {{ auth()->user()->lname }}
E-Mail {{ auth()->user()->email }}
Created-At {{ auth()->user()->created_at }}
Password Reset
@csrf @method('PUT')
 Close
Profile
@if (auth()->user()->staffprofile && auth()->user()->staffprofile != NULL)
ADDITIONAL DETAILS
DOB {{ auth()->user()->staffprofile->dob }}
POB {{ auth()->user()->staffprofile->birthplace }}
SEX {{ auth()->user()->staffprofile->sex->name }}
MARITAL {{ auth()->user()->staffprofile->marital->name }}
COUNTRY {{ auth()->user()->staffprofile->country->name }}
PERMANENT ADDRESS {{ auth()->user()->staffprofile->parmanentaddress }}
CURRENT ADDRESS {{ auth()->user()->staffprofile->currentaddress }}
NID {{ auth()->user()->staffprofile->nid }}
PHONE {{ auth()->user()->staffprofile->phone }}
ALT-PHONE {{ auth()->user()->staffprofile->alternative_phone }}
PHOTO Photo
@else
Your profile is required!
@endif
Education
@if(auth()->user()->staffeducation->count()>0)
@foreach (auth()->user()->staffeducation as $index=>$se) @endforeach
STAFF EDUCATION
# EDUCATION START-DATE CLOSING-DATE COMPLETED
{{ ++$index }} {{ $se->staffeducationtype->name }} {{ $se->startdate }} {{ $se->closingdate }} {{ $se->completed?'YES':'NO' }}
@else
Empty! Action required!
@endif
Documents
@if(auth()->user()->staffdocument->count()>0)
@foreach (auth()->user()->staffdocument as $index=>$sd) @endforeach
STAFF DOCUMENT
# DOC-TYPE VIEW CREATED AT
{{ ++$index }} {{ $sd->staffdoctype->name }} View {{ $sd->created_at }}
@else
Empty! Action required!
@endif
Expertise
@if(auth()->user()->staffexpertise->count()>0)
@foreach (auth()->user()->staffexpertise as $index=>$se) @endforeach
STAFF EXPERTISE
# JOB-TITLE JOB LOCATION START-DATE CLOSING-DATE
{{ ++$index }} {{ $se->jobtitle }} {{ $se->joblocation }} {{ $se->start }} {{ $se->closingdate }}
@else
Empty! Action required!
@endif
Departments
@if(auth()->user()->staffdepartment->count()>0)
@foreach (auth()->user()->staffdepartment as $index=>$sd) @endforeach
STAFF DEPARTMENT
# DEPARTMENT OCCUPATION ACTIVE CREATED AT
{{ ++$index }} {{ $sd->department->name }} {{ $sd->occupation->name }} {{ $sd->active?'YES':'NO' }} {{ $sd->created_at }}
@else
Empty! Action required!
@endif