@extends('layouts.app') @section('title', 'Password Change') @section('content')
My Account
Password Change
@csrf
{{ $errors->first('password') }}
{{ $errors->first('new_confirm_password') }}

Name : {{ $profile->name }}

Name (Bangla) {{ $profile->name_bn }}
Email {{ $profile->email }}
Mobile Number {{ $profile->mobile }}
Role {{ $profile->role->name }}
Join Date {{ $profile->created_at->format('d M Y') }}
Profile Status @if ($profile->status == 'Active')

Active

@else

Deactive

@endif
@section('js') @endsection @endsection