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

Welcome back, {{ auth()->user()->discord_name }}!

What would you like to do?

@if (auth()->user()->account_status === 1) @if (is_null(auth()->user()->reapply)) @if (get_setting('members_must_apply') == 'true') @endif @else @if (get_setting('members_must_apply') == 'true') @if (auth()->user()->reapply) @if (auth()->user()->reapply_date > now())

You can not reapply until {{ auth()->user()->reapply_date->format('m/d/Y') }}. View your last application to see why it was denied.

@else @endif @else

You can not reapply. View your last application to see why it was denied.

@endif @endif @endif @endif @if (auth()->user()->account_status === 3) @endif
@csrf Logout
@endauth @guest

{{ __('Welcome to') }} {{ get_setting('community_name') }}!

{!! Str::markdown(get_setting('community_intro')) !!}

@endguest
{{-- Change Theme --}} Community CAD {{ config('app.version') }} {{-- Ingame Login --}}
@endsection