@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __(":userNameValue's profile", ['userNameValue' => $profile->user->name])) @section('content_header')

{{__('Users')}} / {{__('Profile')}} / {{ $profile->user->name }}

@stop @section('js') @stop @section('content') @if (is_array($suspensionInfo))
{{__('This account has been suspended :suspensionTypeValue', ['suspensionTypeValue' => ($suspensionInfo['isPermanent']) ? __('permanently.') : __('until :date.', ['date' => $suspensionInfo['bannedUntil']])]) }}

{{__('This user has been suspended by the admins. Admins suspend accounts for a variety of reasons, including spam.')}}

{{$suspensionInfo['reason']}}

@endif @if (Auth::user()->hasRole('admin'))

{{__("Please confirm that you want to suspend this account. You'll need to add a reason and expiration date to confirm this.")}}

@csrf @if($demoActive)

{{ __('This feature is disabled') }}

@endif

{{ __('Temporary suspensions will be automatically lifted. The suspension note is visible to all users. Suspended users will not be able to login or register.') }}

@if (!Auth::user()->is($profile->user) && $profile->user->isStaffMember()) @if($demoActive)

{{ __('This feature is disabled') }}

@endif

{{__('You are about to terminate a recruited staff member')}}

{{__('Terminating a staff member will remove their privileges on the application management site and connected integrations configured for the vacancy they applied for.')}}

{{__('THIS PROCESS IS IRREVERSIBLE AND IMMEDIATE')}}

@csrf @method('PATCH')
@endif @if($demoActive)

{{ __('This feature is disabled') }}

@endif

{{__('WARNING: This is a potentially destructive action!')}}

{{__("Deleting a user's account is an irreversible process. Historic and current applications, votes, and profile content, as well as any personally identifiable information will be immediately erased.")}}

$profile->user->id])}}> @csrf @method('DELETE')

{{__('Search results')}}

@if (!isset($ipInfo->message))
{{__('Origin country')}} {{$ipInfo->country_name ?? 'N/A'}}
{{__('State/Province')}} {{$ipInfo->state_prov ?? 'None'}}
{{__('District (if any)')}} {{$ipInfo->district ?? 'N/A'}}
{{__('City')}} {{$ipInfo->city ?? 'N/A'}}
{{__('Postal code')}} {{$ipInfo->zipcode ?? 'N/A'}}
{{__('Geographical coordinates')}} {{$ipInfo->latitude ?? 0}}, {{$ipInfo->longitude ?? 0}}
{{__('European?')}} {{($ipInfo->is_eu) ? __('Yes') : __('No')}}
{{__('ISP')}} {{$ipInfo->isp ?? 'N/A'}}
{{__('Organization')}} {{$ipInfo->organization ?? 'N/A'}}
{{__('Connection type (e.g. datacenter, home)')}} {{$ipInfo->connection_type ?? 'N/A'}}
{{__('Timezone')}} {{$ipInfo->time_zone->name ?? __('N/A')}}
@else
{{__("This query didn't return any results.")}}

{{$ipInfo->message}}

@endif
@if($demoActive)

{{ __('This feature is disabled') }}

@endif
@csrf @method('PATCH')

{{__('messages.profile.edituser_consequence')}}

@foreach($roles as $roleName => $status) @endforeach
{{ ucfirst($roleName) }}
@endif
@if($profile->avatarPreference == 'gravatar') {{ __('User profile picture') }} @else {{ __('User profile picture') }} @endif
@if ($profile->user->isBanned())

{{$profile->user->name}}

@else

{{$profile->user->name}}

@endif

{{$profile->profileShortBio}}

{{__('Member since :date', ['date' => $since])}}

@if (Auth::user()->hasRole('admin')) @endif @if ($profile->user->is(Auth::user())) @elseif (Auth::user()->hasRole('admin') && $profile->user->isStaffMember()) @endif
@if (Auth::user()->hasRole('admin'))
@if (!$profile->user->isBanned())
@else
@method('DELETE') @csrf
@endif

@endif

{{__('About')}}

{{$profile->profileAboutMe}}
@stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop