load_profile_info.blade.php 1.1 KB

1234567891011121314151617181920212223242526
  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;"> {{$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. @endsection