@extends('layouts.dashboard') @section('title', 'Payment Settings - PangoQ') @section('content')

Payment Settings

Payment Methods

Manage your payment methods for trip savings.

Your Payment Methods

@if(count($paymentMethods) > 0)
    @foreach($paymentMethods as $method)
  • @if($method['type'] === 'card') @elseif($method['type'] === 'mpesa') @else @endif
    {{ $method['name'] }}
    {{ $method['details'] }}
  • @endforeach
@else

No payment methods

Add a payment method to start saving for your trips.

@endif

Auto-Contributions

Set up automatic contributions to your trip savings.

@csrf @method('PATCH')

Set up automatic payments to your trip savings wallets.

@endsection