@extends('admins.dashboard') @section('content')
Show Single User @if ($showUser->isAdmin()) Revoke Admin Access @else Set as Admin @endif
Full Name
: {{ $showUser->salutation. ' ' . $showUser->last_name . ' ' . $showUser->first_name}}
Country
: {{ $userCountry }}
Status
: {{ $showUser->status }}
Email
: {{ $showUser->email }}
Address
: {{ $showUser->address }}

@foreach($conferences as $conf) @endforeach
Id Conference Name Enrolls
{{ $conf->id }} {{ $conf->name }} @if (!$showUser->isAdmin()) @if ($showUser->isAuthoring($conf)) author @endif @if ($showUser->isReviewing($conf)) reviewer @endif @if ($showUser->isOrganizing($conf)) organizer @endif @endif @if (!$showUser->isAdmin()) @if (!$showUser->isReviewing($conf)) Set Reviewer @endif @if (!$showUser->isOrganizing($conf)) Set Organizer @endif @if (!$showUser->isAuthoring($conf)) Set Author @endif @else

This user is administrator of system.

@endif
@endsection