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

My Profile

Manage your account information, profile photo and password.

@if(auth()->user()->avatar_url) {{ auth()->user()->name }} @else
{{ strtoupper(substr(auth()->user()->name, 0, 1)) }}
@endif

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

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

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

Joined {{ auth()->user()->created_at?->format('F d, Y') }}

@if(auth()->user()->avatar)
@csrf @method('DELETE')
@endif
@csrf

Profile Information

Update your name, email address and profile photo.

@csrf

Change Password

Use a strong password to keep your account secure.

@endsection