12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <form action="{{ route('affiliate_user.payment_store') }}" method="POST">
- @csrf
- <div class="modal-header">
- <h5 class="modal-title h6">{{ translate('Affiliate Payment')}}</h5>
- <button type="button" class="close" data-dismiss="modal">
- </button>
- </div>
- <div class="modal-body">
- <table class="table table-striped table-bordered" >
- <tbody>
- <tr>
- @if($affiliate_user->balance >= 0)
- <td>{{ translate('Due Amount') }}</td>
- <td><strong>{{ single_price($affiliate_user->balance) }}</strong></td>
- @endif
- </tr>
- <tr>
- <td>{{ translate('Paypal Email') }}</td>
- <td>{{ $affiliate_user->paypal_email }}</td>
- </tr>
- <tr>
- <td>{{ translate('Bank Information') }}</td>
- <td>{{ $affiliate_user->bank_information }}</td>
- </tr>
- </tbody>
- </table>
- @if ($affiliate_user->balance > 0)
- <input type="hidden" name="affiliate_user_id" value="{{ $affiliate_user->id }}">
- <div class="form-group row">
- <label class="col-sm-3 col-from-label" for="amount">{{ translate('Amount')}}</label>
- <div class="col-sm-9">
- <input type="number" min="0" step="0.01" name="amount" id="amount" value="{{ $affiliate_user->balance }}" class="form-control" required>
- </div>
- </div>
- <div class="form-group row">
- <label class="col-sm-3 col-from-label" for="payment_method">{{ translate('Payment Method')}}</label>
- <div class="col-sm-9">
- <select name="payment_method" id="payment_method" class="form-control aiz-selectpicker" required>
- <option value="">{{ translate('Select Payment Method')}}</option>
- <option value="Paypal">{{ translate('Paypal')}}</option>
- <option value="Bank">{{ translate('Bank')}}</option>
- </select>
- </div>
- </div>
- @endif
- </div>
- <div class="modal-footer">
- @if ($affiliate_user->balance > 0)
- <button class="btn btn-sm btn-primary" type="submit">{{ translate('Pay')}}</button>
- @endif
- <button type="button" class="btn btn-sm btn-light" data-dismiss="modal">{{translate('Cancel')}}</button>
- </div>
- </form>
|