@php $prefix = auth()->user() && auth()->user()->role === 'admin' ? 'admin.' : 'user.'; $user = auth()->user(); if ($user) { if ($user->role === 'admin') { $brands = \App\Models\Brand::where('status', 1)->get(); } else { $brands = \App\Models\Brand::where('user_id', $user->id)->where('status', 1)->get(); } } else { $brands = collect(); } $defaultBrandId = $brands->first()?->id; @endphp
@csrf

{{ __('Add Funds to Your Account') }}

Choose an amount and a payment method to proceed.

@if ($errors->any()) @endif
@if($brands->count() > 0)
@endif
BDT
{{ __('Cancel') }} {{ __('Proceed to Payment') }}