@extends('layouts/horizontalLayout') @section('title', __('My Profile')) @section('content')
@if($user->profile_picture) Profile @else {{ $user->getInitials() }} @endif
{{ $user->getFullName() }}

{{ $user->designation->name ?? __('Employee') }}

{{ $user->code }} {{ ucfirst($user->status->value ?? $user->status) }}

{{ $user->email }}

{{ $user->phone }}

@if($user->date_of_joining)

{{ __('Joined') }}: {{ $user->date_of_joining->format('d M, Y') }}

@endif
{{ __('Update Profile') }}
@csrf
{{ __('Max size: 2MB. Supported formats: JPEG, PNG, JPG, GIF') }}
{{ __('Change Password') }}
@csrf
@endsection