@extends('layouts.master') @section('title', 'My Profile') @section('content')
{{-- PROFILE INFORMATION --}}
Profile Information
@csrf
@if($user->avatar)
Avatar
@endif
{{-- ACCOUNT INFORMATION --}}
Account Information
Username {{ $user->username }}
Status @if($user->is_active) Active @else Inactive @endif
Created {{ $user->created_at }}
Last Login {{ $user->last_login_at ?? '-' }}
{{-- CHANGE PASSWORD --}}
Change Password
@csrf
@endsection