@include('website.layouts.header')
{{ $customer->name }}
{{ $customer->email }}
Profile Settings
@csrf
Name *
@error('name')
{{ $message }}
@enderror
Username
@error('username')
{{ $message }}
@enderror
Email ID *
@error('email')
{{ $message }}
@enderror
Mobile Number
@error('phone')
{{ $message }}
@enderror
Address
{{ old('address', $customer->address) }}
@error('address')
{{ $message }}
@enderror
Profile Photo
@error('profile_photo')
{{ $message }}
@enderror @if($customer->profile_photo)
@endif
Passport Copy
@error('passport_copy')
{{ $message }}
@enderror @if($customer->passport_copy)
View existing passport copy
@endif
ID Copy
@error('id_copy')
{{ $message }}
@enderror @php $idCopy = json_decode($customer->id_copy); @endphp @if(isset($idCopy->url))
View existing ID copy
@endif
Current Password (required if changing password)
@error('current_password')
{{ $message }}
@enderror
New Password
@error('new_password')
{{ $message }}
@enderror
Confirm New Password
@if(!empty($customer->referral_code))
Your Referral Code:
{{ $customer->referral_code }}
@endif
Download Loyalty Pass
Save Profile
@include('website.layouts.footer')