view_resume.blade.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. @extends('layouts.master')
  2. @section('content')
  3. <div class="col-lg-12">
  4. <div class="card">
  5. <div class="card-block">
  6. <div class="row">
  7. <div class="col-md-12">
  8. <span class="pull-left" style="width: 50%">
  9. <div style="margin-top: 11%;margin-left: 6%;">
  10. <p style="color:#333399;text-transform: uppercase;font-size:25px"><strong>{{$user->name}}</strong></p>
  11. <p style="font-size:14px">E-mail : {{$user->email}}</p>
  12. <p style="font-size:14px"> Phone : {{$user->mob}}</p>
  13. <p style="font-size:14px"> Employee ID : {{$user->employee_id}}</p>
  14. <p style="font-size:14px"> Designation : {{$user->designation}}</p>
  15. </div>
  16. </span>
  17. <span class="pull-right" style="width: 50%">
  18. <img class="img img-responsive pull-right"
  19. @if($user->image !='')
  20. @if(file_exists(public_path('/user/').'/'.$user->image))
  21. src="{{ asset('/public/user/'.$user->image) }}"
  22. @else
  23. src="{{ asset('/public/others/default.jpg') }}"
  24. @endif
  25. @else
  26. src="{{ asset('/public/others/default.jpg') }}" style="width:200px;height:200px"
  27. @endif
  28. >
  29. </span>
  30. </div>
  31. <div class="col-md-12">
  32. <div class="text-center">
  33. <h3>Basic Information</h3>
  34. <h4 style="border-bottom: 2px solid #339;margin-bottom: 10px"></h4>
  35. </div>
  36. </div>
  37. <div class="col-md-12">
  38. <div style="margin-top:2%;padding: 2% 3%">
  39. <p style="font-size: 14px"><b>Official Email : </b> {{ $user->email2 }}</p>
  40. <p style="font-size: 14px"><b>Present Address : </b>{{ $user->address }}</p>
  41. <p style="font-size: 14px"><b>Permanenet Address : </b>{{ $user->per_address }}</p>
  42. <p style="font-size: 14px"><b>Joining Date : </b> {{ date("F jS,Y", strtotime($user->joining_date)) }}</p>
  43. <p style="font-size: 14px"><b>Website : </b>{{ $user->website }}</p>
  44. <p style="font-size: 14px"><b>Emergancy Contact Person Name : </b>{{ $user->emrgncy_contact }}</p>
  45. <p style="font-size: 14px"><b>Emergancy Contact No : </b>{{ $user->emrgncy_contact_phone }}</p>
  46. </div>
  47. </div>
  48. <div class="col-md-12">
  49. <div class="col-md-6" style="font-size: 30px;margin-left: 44%;">
  50. <a href="{{ $user->fb }}" target="_blank">
  51. <i class="fa fa-facebook aria-hidden="true"></i>
  52. </a>
  53. <a href="{{ $user->skype }}" target="_blank">
  54. <i class="fa fa-skype" aria-hidden="true"></i>
  55. </a>
  56. <a href="{{ $user->linkedin }}" target="_blank">
  57. <i class="fa fa-linkedin-square" aria-hidden="true"></i>
  58. </a>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. <style>
  66. b {
  67. font-weight: bold
  68. }
  69. .coustom_list {
  70. list-style-type: none;
  71. }
  72. </style>
  73. @endsection