load_profile_info.blade.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. @extends('admin.sub_contents.base')
  2. @section('main')
  3. <div class="single_glance_row mt-5">
  4. <span class="title" style="font-size:11px; font-weight: 600;">Name :</span>
  5. <span class="tbl2 mb-2">
  6. {{$tuser->first_name}} {{$tuser->last_name}}
  7. </span>
  8. </div>
  9. <div class="single_glance_row mt-1">
  10. <span class="title" style="font-size:11px; font-weight: 600;">Email :</span>
  11. <span style="font-size: 11px; color: #868e96;">{{$tuser->email}}</span>
  12. </div>
  13. <div class="single_glance_row mt-1" style="display: flex;">
  14. <span class="title" style="font-size:11px; font-weight: 600;">University Name : </span>
  15. <span style="font-size: 11px; color: #868e96;">
  16. @if($tuser->university_name)
  17. {{ $tuser->university_name }}
  18. @else
  19. {{cn($tuser,'university.name','') }}
  20. @endif
  21. </span>
  22. </div>
  23. <div class="single_glance_row mt-1" style="display: flex;">
  24. <span class="title" style="font-size:11px; font-weight: 600;">Department : </span>
  25. @if(isset($tuser->others_department))
  26. <span style="font-size: 11px; color: #868e96;"> {{ $tuser->others_department }}</span>
  27. @else
  28. <span style="font-size: 11px; color: #868e96;"> {{ cn($tuser,'department_name.name','')}}</span>
  29. @endif
  30. </div>
  31. <div class="single_glance_row mt-1" style="display: flex;">
  32. <span class="title" style="font-size:11px; font-weight: 600;">Designation : </span>
  33. <span class="ms-1" style="font-size: 11px; color: #868e96;"> {{$tuser->designation}} </span>
  34. </div>
  35. @endsection