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

Profile

@csrf @method('PATCH')
avatar

{{$user->name}}

{{$user->email}}

{{$user->Credits()}}
{{$user->role}}
{{$user->created_at->isoFormat('LL')}}
@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
Link your discord account! @if(is_null(Auth::user()->discordUser))

By verifying your discord account, you receive an extra {{$credits_reward_after_verify_discord}} credits and the Verified role!

Login with Discord @else @if(is_null(Auth::user()->discord_verified_at))

Hello {{Auth::user()->discordUser->username}}!
To complete the verification process, join our discord server and type the command {{$discord_verify_command}}

@else

You are verified!

@endif @endif
@endsection