@extends('layouts.public') @section('content')

{{ $user->discord_name }}

  • Status {{ $user->status_name }}
  • Member since @if (!is_null($user->member_join_date)) {{ $user->member_join_date->format('M d, Y') }} @else Not a member @endif
  • Account since {{ $user->created_at->format('M d, Y') }}
  • Last login {{ $user->last_login->format('M d, Y H:i') }}c
Information
Discord Name
{{ $user->discord }}
Real Name
{{ $user->real_name }}
Email
{{ $user->email }}
Steam Hex
{{ $user->steam_hex }}
Steam ID
{{ $user->steam_id }}
Discord ID
{{ $user->id }}
Birthday
{{ $user->birthday->format('M d, Y') }}
Age
{{ $user->age }}
@if (get_setting('members_must_apply') == 'true')
Applications
@if (auth()->user()->account_status === 1) @if (is_null(auth()->user()->reapply)) New Application @else @if (auth()->user()->reapply) @if (auth()->user()->reapply_date > now())

You can not reapply until {{ auth()->user()->reapply_date->format('m/d/Y') }}.

@else New Application @endif @else

You can not reapply.

@endif @endif @endif
@else

You are waiting on staff/admin to approve your account.

@endif
@endsection