@extends('layouts.main') @section('content')
@if (!Auth::user()->hasVerifiedEmail() && strtolower($force_email_verification) == 'true')
{{ __('Required Email verification!') }}
{{ __('You have not yet verified your email address') }} {{ __('Click here to resend verification email') }}
{{ __('Please contact support If you didnt receive your verification email.') }}
@endif @if (is_null(Auth::user()->discordUser) && strtolower($force_discord_verification) == 'true') @if (!empty(config('SETTINGS::DISCORD:CLIENT_ID')) && !empty(config('SETTINGS::DISCORD:CLIENT_SECRET')))
{{ __('Required Discord verification!') }}
{{ __('You have not yet verified your discord account') }} {{ __('Login with discord') }}
{{ __('Please contact support If you face any issues.') }}
@else
{{ __('Required Discord verification!') }}
{{ __('Due to system settings you are required to verify your discord account!') }}
{{ __('It looks like this hasnt been set-up correctly! Please contact support.') }}'
@endif @endif
@csrf @method('PATCH')
avatar

{{ $user->name }}

{{ $user->email }} @if ($user->hasVerifiedEmail()) @else @endif

{{ $user->Credits() }}
@if(config('SETTINGS::REFERRAL::ENABLED') == "true") @if((config('SETTINGS::REFERRAL::ALLOWED') == "client" && $user->role != "member") || config('SETTINGS::REFERRAL::ALLOWED') == "everyone")
{{_("Referral URL")}} : {{route("register")}}?ref={{$user->referral_code}} @else {{_("Make a purchase to reveal your referral-URL")}} @endif
@endif
{{ $user->role }}
{{ $user->created_at->isoFormat('LL') }}
@if( $errors->has('pterodactyl_error_message') ) @foreach( $errors->get('pterodactyl_error_message') as $err ) {{ $err }} @endforeach @endif @if( $errors->has('pterodactyl_error_status') ) @foreach( $errors->get('pterodactyl_error_status') as $err ) {{ $err }} @endforeach @endif
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
{{ __('Change Password') }}
@error('current_password')
{{ $message }}
@enderror
@error('new_password')
{{ $message }}
@enderror
@error('new_password_confirmation')
{{ $message }}
@enderror
@if (!empty(config('SETTINGS::DISCORD:CLIENT_ID')) && !empty(config('SETTINGS::DISCORD:CLIENT_SECRET')))
@if (is_null(Auth::user()->discordUser)) {{ __('Link your discord account!') }}
@if ($credits_reward_after_verify_discord)

{{ __('By verifying your discord account, you receive extra Credits and increased Server amounts') }}

@endif
{{ __('Login with Discord') }} @else

{{ __('You are verified!') }}

{{ $user->discordUser->username }} {{ $user->discordUser->locale }}

{{ $user->discordUser->id }}

avatar
@endif
@endif
@endsection