@if(auth('web')->check() && is_null(auth('web')->user()->email_verified_at))

Your account isn't verified Verify now

@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ __("routes.Hello") }},

{{ \App\Http\Helpers\AuthHelper::user()->fullname() }}

@if (auth('web')->check())
{{ __('routes.Points:') }} {{ \App\Http\Helpers\AuthHelper::user()->getPoints() }}
{{ __('routes.Wallet balance:') }} {{ price( \App\Http\Helpers\AuthHelper::user()->walletBalance()) }}
@endif {{-- @if (auth('web')->check()) @endif --}}
{{ $slot }}