@extends('layouts.user') @section('head') @endsection @section('content')

{{__("Buy credits")}}

@include('admin.message')
{{__("Buy")}}
@csrf @if(setting_item('wallet_deposit_type') == 'list') @if(!empty($wallet_deposit_lists))
@foreach($wallet_deposit_lists as $k=>$item) @endforeach
# {{__('Name')}} {{__('Price')}} {{__("Credit")}}
{{$k + 1}} {{$item['name']}} {{format_money($item['amount'])}} {{$item['credit']}}
@else
{{__("Sorry, no options found")}}
@endif @else

{{__("How much would you like to deposit?")}}

@endif

{{__('Select Payment Method')}}

@foreach($gateways as $k=>$gateway)
{!! $gateway->getDisplayName() !!}
{!! $gateway->getDisplayHtml() !!}
@endforeach
@php $term_conditions = setting_item('booking_term_conditions'); @endphp
@endsection @section('footer') @endsection