@extends('layouts.admin') @section('title','My Profile') @section('page-title','My Profile') @push('styles') @endpush @section('content') {{-- Profile Hero --}}
@if(auth()->user()->profile_photo_path) {{ auth()->user()->name }} @else
{{ strtoupper(substr(auth()->user()->name,0,1)) }}
@endif
{{ auth()->user()->name }}

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

{{ ucfirst(auth()->user()->role) }} @if(auth()->user()->position) — {{ auth()->user()->position }} @endif @if(auth()->user()->phone) {{ auth()->user()->phone }} @endif
@if(auth()->user()->isAdmin()) Manage Users @endif
@if (Laravel\Fortify\Features::canUpdateProfileInformation()) @livewire('profile.update-profile-information-form') @endif @if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords())) @livewire('profile.update-password-form') @endif
@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication()) @livewire('profile.two-factor-authentication-form') @endif @livewire('profile.logout-other-browser-sessions-form') @if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures()) @livewire('profile.delete-user-form') @endif
@endsection