@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('Account Management')) @section('content_header')

{{ __('Users / Accounts / :username / Manage', ['username' => $user->name]) }}

@stop @section('js') @stop @section('content')

{{__("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($user) && $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.")}}

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

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

@endif
@csrf @method('PATCH')

{{__('If the setting "Require Valid Game License" is activated, editing this field may have unintended consequences. Proceed with caution.')}}

@foreach($roles as $roleName => $status) @endforeach
{{ ucfirst($roleName) }}

{{ __('Personal details') }}

@if(!is_null($user->email_verified_at)) {{ __('Verified') }} @else {{ __('Not verified') }} @endif
@stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop