@if (! $selectedUser)
No merchant selected
{{--
Select a user from the left panel to manage collection or payout settings.
--}}
@else
{{ $selectedUser->name }}
{{ $selectedUser->email }}
{{ ucfirst($activeTab) }} Settings
@csrf @method('PUT') @if ($activeTab === 'collection')
Payin Mode Status
payin_mode_status ? 'checked' : '' }}> payin_mode_status ? '' : 'checked' }}>
Payin API Mode
payin_api_mode === 'both' ? 'checked' : '' }}> payin_api_mode === 'redirect' ? 'checked' : '' }}> payin_api_mode === 'hosted' ? 'checked' : '' }}>
Check Blacklisted Contact
payin_blacklist_contact_check ? 'checked' : '' }}> payin_blacklist_contact_check ? '' : 'checked' }}>
Payin Charges
@php($payinChargeMode = old('payin_charge_mode', $selectedUser->payin_charge_mode ?: 'overall'))
Payin Charges
Overall Charges
{{ $payinChargeMode === 'overall' ? 'Active' : 'Inactive' }}
Use this when one single payin charge should apply everywhere.
Charges Overall
Individual Charges
{{ $payinChargeMode === 'individual' ? 'Active' : 'Inactive' }}
Use this when EasyPaisa and Jazz charges should be managed separately.
EasyPaisa Charges
Jazz Charges
{{--
Card Charges
--}} @else
Payout Status
payout_mode_status ? 'checked' : '' }}> payout_mode_status ? '' : 'checked' }}>
Disbursement Mode
Suspend Active
Manual Balance Mode
payout_manual_balance_mode ? 'checked' : '' }}> payout_manual_balance_mode ? '' : 'checked' }}>
IP Restriction
payout_ip_restriction ? 'checked' : '' }}> payout_ip_restriction ? '' : 'checked' }}>
Payout Amount Limit
payout_amount_limit_status ? 'checked' : '' }}> payout_amount_limit_status ? '' : 'checked' }}>
Daily Payout Limit
Charges Deduction From
payout_charge_deduction_from === 'sender' ? 'checked' : '' }}> payout_charge_deduction_from === 'receiver' ? 'checked' : '' }}>
Receiver Deduction Percent
Allow Payout with Merchant Overall Balance
payout_allow_overall_balance ? 'checked' : '' }}> payout_allow_overall_balance ? '' : 'checked' }}>
Allow Payout with Daily Balance
payout_allow_daily_balance ? 'checked' : '' }}> payout_allow_daily_balance ? '' : 'checked' }}>
Charges Mode
@php($payoutChargeMode = old('payout_charge_mode', $selectedUser->payout_charge_mode ?: 'overall'))
Overall Charges
{{ $payoutChargeMode === 'overall' ? 'Active' : 'Inactive' }}
Use this when one payout charge should apply to all payout methods.
Overall Charges
Individual Charges
{{ $payoutChargeMode === 'individual' ? 'Active' : 'Inactive' }}
Use this when Mobile Wallet and IBFT charges should stay separate.
Mobile Wallet
IBFT
@endif
{{--
Changes save instantly without reloading the page.
--}}
@endif