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

User Settings

Manage Names


@method('PUT') @csrf
Discord is the prefered method to have your name. If your Discord name is different than what you need for the server you can change it here.
{{--

In-Game Login


Email: {{ auth()->user()->email }}

This is the email address connected to your Discord account. If you changed your Discord email address, log out and back in to update email address.

@method('PUT') @csrf @if (auth()->user()->password != null)
@else

No Password Set

@endif
--}}

Update Linked Accounts


Coming Soon!™ For now you can log out and log back in to refresh Discord Information.

{{-- Update Discord Information --}}
@if (get_setting('allow_members_to_submit_loa_requests'))

Request LOA


@csrf
Date to start your LOA.
Estimated date to end your LOA.
Why do you need this LOA?

LOA Requests


@forelse ($loa_requests as $request)
Start Date: {{ $request->start_date->format('m/d/Y') }} | End Date: {{ $request->end_date->format('m/d/Y') }} | Status: {{ $request->status }}
@empty

You have no LOA requests.

@endforelse
@endif @endsection