@extends('layouts.panel') @section('page', 'Profile') @section('navigation')
  • NAVIGATION
  • Dashboard
  • @canany(['project_see', 'status_see'])
  • Projects
  • @endcanany @canany(['roles_see', 'user_see'])
  • Management
  • @endcanany @endsection @section('content')

    {{ Auth::user()->fullname() }}

    {{ Auth::user()->created_at->format('d-m-Y') }}

    First Name: {{ Auth::user()->firstname }}
    Sur Name: {{ Auth::user()->surname }}

    Email: {{ Auth::user()->email }}

    2FA: {{ !is_null(Auth::user()->google2fa_secret) ? "Enabled" : "Disabled" }}

    @endsection