@extends('admin.layouts.admin') @section('style') @endsection @section('content')
{{ $user->name ?? ''}}

@if(isset($user->roles) && count($user->roles) > 0) @foreach ($user->roles as $role) {{ $role->name}} @endforeach @else N/A @endif

  • Phone : {{ $user->phone ?? '' }}
  • Email : {{ $user->email ?? '' }}
  • @if($user->user_type == 'Candidate')
  • Location : {{ $user->candidate->location ?? ''}}
  • @endif
@endsection @section('script') @endsection