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

{{ $user->email }}

@if (session('success'))
{{ session('success') }}
@endif
{{-- Email Verification --}}
@if (!$user->email_verified_at)
@csrf

Your email is not verified.

@else
✅ Your Email Is Verified
@endif
{{-- Two Factor Authentication --}}
@if (!$user->google2fa_secret)
@csrf
@else
@csrf
@endif
@endsection