@extends('layouts.master') @section('title') @lang('translation.profile') @endsection @section('css') @endsection @section('content') @php if (Auth::user()->first_name || Auth::user()->last_name) { $full_name = Auth::user()->first_name.' '.Auth::user()->last_name; }else{ $full_name = 'N/A'; } @endphp
{{-- --}}
{{-- --}} @if(Auth::user()->profile_picture && file_exists(public_path('ProfilePicture/' . Auth::user()->profile_picture))) @else @endif

{{ $alertUser ? $alertUser->first_name . ' ' . $alertUser->last_name : $full_name }}

{{$alertUser ? '' : Auth::user()->username ?? 'N/A'}}

United States
GC7 Cafe
@include('partials.session')
Personal Information
@php $user = Auth::user(); @endphp @if ($user->first_name != null && $user->last_name != null && $user->username != null && $user->account_verification == 'Under Review') @endif @if ($user->first_name != null && $user->last_name != null && $user->username != null && $user->account_verification == 'Suspended') @endif @if ($user->first_name != null && $user->last_name != null && $user->username != null && $user->account_verification == 'Expired') @endif
@if(!auth()->user()->hasRole(App\Models\User::Guest)) @endif @if(!$alertUser) @endif @if(!auth()->user()->hasRole(App\Models\User::Guest)) @endif @if(!$alertUser) @endif
       Full Name : {{ $alertUser ? $alertUser->first_name . ' ' . $alertUser->last_name : $full_name }}
       Username : {{ Auth::user()->username ?? 'N/A'}}
       Email : {{ $alertUser ? $alertUser->email : Auth::user()->email }}
       Account : {{ Auth::user()->account_verification }}
      Joining Date : {{ Auth::user()->created_at->format('d F, Y') }}
@canany(['Edit Avatar']) @foreach($general_settings as $setting) @if($setting->key === 'avatar' && $setting->value == 1) @endif @endforeach @endcanany
Referral Link
@if (Auth::user()->account_verification == 'Suspended' || Auth::user()->account_verification == 'Expired')
Verification Documents
@csrf @if(Auth::user()->account_verification !== 'Expired') @endif
       Selfie :
       ID Card (Front) :
       ID Card (Back) :
@endif
@php $sound = \App\Models\User::find(auth()->user()->id)->sound != null ? asset("").\App\Models\User::find(auth()->user()->id)->sound : asset('/sounds/custom/coin.mp3'); @endphp @endsection @section('script') @endsection