@extends('layouts.shop') @section('title', 'Account Settings - Hair Niche By Shelly') @section('content')
@include('user.partials.sidebar')

Settings

Payment Details

@if($user->paymentMethods->count() > 0)

Saved Methods

@foreach($user->paymentMethods as $method)
{{ $method->type === 'bank_transfer' ? 'Bank Transfer' : 'UPI' }} @if($method->is_default) Default @endif
@if($method->type === 'bank_transfer') {{ $method->bank_name }} - {{ $method->account_number }}
IFSC: {{ $method->ifsc_code }} | Branch: {{ $method->branch }} @else {{ $method->upi_id }} @endif
@if(!$method->is_default)
@csrf
@endif
@csrf @method('DELETE')
@endforeach
@endif

Add New Payment Method

@csrf

Enter your Virtual Payment Address (VPA).

Change Password

@if(session('success'))
{{ session('success') }}
@endif
@csrf
@error('current_password') {{ $message }} @enderror

Min 8 characters

Mixed case (A-z)

Contains number

Contains symbol

Danger Zone

Warning: Deactivating your account will disable your access to the dashboard and you will not be able to place new orders. Your past order history will be retained for our records.

@csrf
@endsection