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

{{ $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 Auth --}} @if (!$user->google2fa_secret)
@csrf
@else
@csrf
@endif
@endsection