|
@@ -1,25 +1,25 @@
|
|
|
-@extends('teacher.sub_contents.base')
|
|
|
+@extends('admin.sub_contents.base')
|
|
|
@section('main')
|
|
|
<div class="single_glance_row mt-5">
|
|
|
<span class="title" style="font-size:11px; font-weight: 600;">Name :</span>
|
|
|
<span class="tbl2 mb-2">
|
|
|
- {{$user->first_name}} {{$user->last_name}}
|
|
|
+ {{$tuser->first_name}} {{$tuser->last_name}}
|
|
|
</span>
|
|
|
</div>
|
|
|
<div class="single_glance_row mt-1">
|
|
|
<span class="title" style="font-size:11px; font-weight: 600;">Email :</span>
|
|
|
- <span style="font-size: 11px; color: #868e96;">{{$user->email}}</span>
|
|
|
+ <span style="font-size: 11px; color: #868e96;">{{$tuser->email}}</span>
|
|
|
</div>
|
|
|
<div class="single_glance_row mt-1" style="display: flex;">
|
|
|
<span class="title" style="font-size:11px; font-weight: 600;">University Name :</span>
|
|
|
- <span style="font-size: 11px; color: #868e96;"> {{$user->university_name }}</span>
|
|
|
+ <span style="font-size: 11px; color: #868e96;"> {{$tuser->university_name }}</span>
|
|
|
</div>
|
|
|
<div class="single_glance_row mt-1" style="display: flex;">
|
|
|
<span class="title" style="font-size:11px; font-weight: 600;">Department : </span>
|
|
|
- @if(isset($user->department))
|
|
|
- <span style="font-size: 11px; color: #868e96;"> {{ cn($user,'department_name.name','')}}</span>
|
|
|
+ @if(isset($tuser->department))
|
|
|
+ <span style="font-size: 11px; color: #868e96;"> {{ cn($tuser,'department_name.name','')}}</span>
|
|
|
@else
|
|
|
- <span style="font-size: 11px; color: #868e96;"> {{ $user->others_department }}</span>
|
|
|
+ <span style="font-size: 11px; color: #868e96;"> {{ $tuser->others_department }}</span>
|
|
|
@endif
|
|
|
</div>
|
|
|
|