@extends('layout.admin') @section('content')

Admin Profile

@if(auth()->user()->photo) {{ auth()->user()->name }} @else User Image @endif

{{ auth()->user()->name }}

{{ auth()->user()->email }}

  • Name {{ auth()->user()->name }}
  • Role {{ auth()->user()->role->name }}
  • Username(Email) {{ auth()->user()->email }}
  • Phone {{ auth()->user()->phone }}
  • Member since {{ auth()->user()->created_at->format('F j, Y') }}
  • Last updated {{ auth()->user()->updated_at ? auth()->user()->updated_at->format('F j, Y h:i:s A') : '' }}
@endsection