@extends('layouts.user') @section('title', 'Edit Profile') @section('page-title', 'Edit Profile') @section('content')
Edit Profile
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('mobile')
{{ $message }}
@enderror
@error('company')
{{ $message }}
@enderror
@error('address')
{{ $message }}
@enderror

Notification Preferences
user()->email_notifications) ? 'checked' : '' }}>
Receive notifications about account activity via email
user()->sms_notifications) ? 'checked' : '' }}>
Receive important alerts via SMS
Profile Information
  • Keep your profile information up to date
  • Your mobile number is used for important alerts and OTP verification
  • Email is used for account notifications and password resets
  • Enable notifications to stay updated with your account activity
Back to Dashboard
Change Password
@csrf @method('PUT')
@error('current_password')
{{ $message }}
@enderror
@error('new_password')
{{ $message }}
@enderror
Password strength: Very Weak
Password Requirements:
  • At least 8 characters long
  • Contains uppercase and lowercase letters
  • Includes numbers and special characters
  • Not similar to your personal information
Account Information
Account Type:
{{ auth()->user()->role }}
KYC Status:
@if(auth()->user()->kyc_verified) Verified @else Pending @endif
Member Since:
{{ auth()->user()->created_at->format('M j, Y') }}
Last Login:
@if(auth()->user()->last_login_at) {{ auth()->user()->last_login_at->diffForHumans() }} @else Never @endif
@if(auth()->user()->reseller)
Reseller:
{{ auth()->user()->reseller->company_name }}
@endif
@endsection @push('scripts') @endpush @push('styles') @endpush