load_profile_info.blade.php 1.4 KB

123456789101112131415161718192021222324252627282930
  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;"> {{cn($tuser,'university.name','') }}</span>
  16. </div>
  17. <div class="single_glance_row mt-1" style="display: flex;">
  18. <span class="title" style="font-size:11px; font-weight: 600;">Department : </span>
  19. @if(isset($tuser->department))
  20. <span style="font-size: 11px; color: #868e96;"> {{ cn($tuser,'department_name.name','')}}</span>
  21. @else
  22. <span style="font-size: 11px; color: #868e96;"> {{ $tuser->others_department }}</span>
  23. @endif
  24. </div>
  25. <div class="single_glance_row mt-1" style="display: flex;">
  26. <span class="title" style="font-size:11px; font-weight: 600;">Designation : </span>
  27. <span class="ms-1" style="font-size: 11px; color: #868e96;"> {{$tuser->designation}} </span>
  28. </div>
  29. @endsection