@extends('layouts.app') @section('page-title', 'Profile') @section('content')
Profile Information
Name:
{{ auth()->user()->name }}
Email:
{{ auth()->user()->email }}
Role:
{{ ucfirst(auth()->user()->role) }}
Balance:
৳ {{ number_format(auth()->user()->total_balance, 2) }}
Member Since:
{{ auth()->user()->created_at->format('d M Y') }}
Change Password
@csrf @method('PUT')
@error('current_password') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@endsection