@push('footer') @endpush @if ($user)
@if ($user->portal)

{{ ucfirst($user->forename) }} {{ ucfirst($user->surname) }}

@if ($profile) @if ($profile->company)

{{ $profile->company }}

@endif @if ($profile->position)

{{ $profile->position }}

@endif @if ($profile->linkedin || $profile->twitter)
    @if ($profile->linkedin)
  • @endif @if ($profile->twitter)
  • @endif
@endif @endif @else

Anonymous Attendee

{{ $attendee->registration->company }}

@endif
@if ($profile && $profile->about)

About {{ ucfirst($user->name) }}

{{ $profile->about }}
@endif @if ($profile && ($profile->website || $profile->telephone || $profile->mobile))

Contact Details

@endif @if(auth()->user()->id !== $user->id) @if (!auth()->user()->sent_connections->contains(function($item, $key) use ($user) { return $item->from_user_id === auth()->user()->id && $item->to_user_id === $user->id; }))

Make Connection

@else

Make Connection

You've already sent a connection request to {{ ucfirst($user->forename) }} {{ ucfirst($user->surname)}}.

@endif @endif @endif