@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('Account Management')) @section('content_header')
{{ __('Resetting an account\'s two-factor authentication secret will automatically notify the account holder. Additionally, the user\'s password will also be forcefully reset during this process. Please confirm this action by verifying your identity below.') }}
{{ __('Forcing a password reset will automatically notify the account holder and send them a password reset link. Please confirm this action by verifying your identity below.') }}
{{__("Please confirm that you want to suspend this account. You'll need to add a reason and expiration date to confirm this.")}}
{{ __('This feature is disabled') }}
{{__('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')}}
{{ __('This feature is disabled') }}
{{__('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.")}}
{{ __('This feature is disabled') }}
{{ __('User ID: :discordUserID', ['discordUserID' => $user->discord_user_id]) }}
# | {{__('Status')}} | {{ __('Vacancy') }} | {{__('Date')}} | {{__('Actions')}} |
---|---|---|---|---|
{{ $application->id }} | @switch($application->applicationStatus) @case('STAGE_SUBMITTED') {{__('Outstanding (Submitted)')}} @break @case('STAGE_PEERAPPROVAL') {{__('Peer Review')}} @break @case('STAGE_INTERVIEW') {{__('Interview')}} @break @case('STAGE_INTERVIEW_SCHEDULED') {{__('Interview Scheduled')}} @break @case('APPROVED') {{__('Approved')}} @break @case('DENIED') {{__('Denied')}} @break; @default {{__('Denied')}} @endswitch | {{ $application->response->vacancy->vacancyName }} | {{ $application->created_at }} ({{ $application->created_at->diffForHumans() }}) |
|
{{ __('This account has been :suspensionType suspended.', ['suspensionType' => (is_null($suspensionDuration)) ? __('permanently') : __('temporarily') ]) }}
{!! __('Reason: :reason', ['reason' => $suspensionReason]) !!}
@if (!is_null($suspensionDuration)){!! __('Suspension expires: :duration', ['duration' => $suspensionDuration]) !!}
@endif