@extends('layouts.app') @section('content')
{{ $user->profile->position ?? '—' }} @if($user->profile->department) | {{ $user->profile->department }} @endif
{{ $user->profile->about ?? '—' }}
{{ $user->email }}
{{ $user->profile->company->name ?? '—' }}
{{ $user->profile->reportsTo->name ?? '—' }}
{{ $user->profile->phone ?? '—' }}
@if($user->profile->website) {{ $user->profile->website }} @else — @endif
{{ implode(', ', $user->getRoleNames()->toArray()) }}