@extends('layouts.appNew') @section('content')

Deposit

@if(count($errors) > 0)
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif
@csrf

Select where to transfer the money

@error('account') {{ $message }} @enderror

New deposit for account {{ $Account }}

@foreach($paymentMethod as $row)
@endforeach @error('payment_method') {{ $message }} @enderror

Enter the amount ₹

@error('amount') {{ $message }} @enderror

We will send to your dollar in {{ $Account }} account

Back
@endsection