Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.19 KB | None | 0 0
  1. @extends('layouts.dashboard')
  2. @section('title', 'Cash in balance to your account')
  3. @section('content')
  4.  
  5.  
  6. <div class="row">
  7. <div class="col-md-9">
  8.  
  9. <div class="card">
  10. <div class="card-header">
  11. <h4 class="card-title">Bitcoin Wallet Address:
  12. <small class="category"><strong style=" color: blue;">1B7aczSxaMbRsPJXx22TP1foaHQ6FENwTA</strong></small>
  13. </h4>
  14. </div>
  15. <div class="card-content">
  16. <div class="row">
  17. <div class="col-md-3">
  18. <ul class="nav nav-pills nav-pills-icons nav-pills-primary nav-stacked" role="tablist">
  19.  
  20. <li class="active">
  21.  
  22. </li>
  23. <li>
  24. </li>
  25. </ul>
  26. </div>
  27. <div class="col-md-9">
  28. <div class="tab-content">
  29. <div class="tab-pane active" id="instant">
  30.  
  31.  
  32.  
  33.  
  34.  
  35. </div>
  36. <div class="tab-pane" id="local">
  37.  
  38.  
  39. <div class="alert alert-info">
  40. <span class="text-center">Reed before deposit your balance. You need to know gateway fee:</span><br>
  41. @php $id=0;@endphp
  42. @foreach($local_gateways as $local)
  43. @php $id++;@endphp
  44. <span>{{$id}}. <b>{{$local->name}}</b> will charge you <b>{{config('app.currency_symbol')}} {{$local->fixed}}</b> fixed + <b>{{$local->percent}}%</b> in every deposit.</span>
  45. @endforeach
  46. </div>
  47.  
  48. <form action="{{route('userPaymentPreview')}}" method="post">
  49. {{ csrf_field() }}
  50. @if(count($errors) > 0)
  51. <div class="alert alert-danger alert-with-icon" data-notify="container">
  52. <i class="material-icons" data-notify="icon">notifications</i>
  53. <span data-notify="message">
  54.  
  55. @foreach($errors->all() as $error)
  56. <li><strong> {{$error}} </strong></li>
  57. @endforeach
  58.  
  59. </span>
  60. </div>
  61. <br>
  62. @endif
  63.  
  64. <div class="row">
  65. <div class="col-md-6 col-md-offset-3">
  66. <div class="form-group label-floating">
  67. <select class="selectpicker" name="gateway" data-style="btn btn-warning btn-round" title="Select Deposit Gateway" data-size="7">
  68.  
  69. @foreach($local_gateways as $local)
  70. <option value="{{$local->id}}">{{$local->name}}</option>
  71. @endforeach
  72. </select>
  73. </div>
  74. </div>
  75. </div>
  76.  
  77. <br>
  78. <div class="row">
  79.  
  80. <div class="col-md-6 col-md-offset-3">
  81.  
  82. <div class="form-group label-floating">
  83.  
  84. <label class="control-label" for="amount">Deposit Amount</label>
  85. <input id="amount" name="amount" type="text" class="form-control">
  86.  
  87. </div>
  88. </div>
  89. </div>
  90.  
  91.  
  92. <br>
  93. <br>
  94. <a href="{{route('userDeposits')}}" class="btn btn-rose">Cancel Deposit</a>
  95.  
  96. <button type="submit" class="btn btn-success pull-right">Deposit Now</button>
  97. <div class="clearfix"></div>
  98. </form>
  99.  
  100.  
  101.  
  102.  
  103. </div>
  104. </div>
  105. </div>
  106. </div>
  107. </div>
  108. </div>
  109.  
  110.  
  111.  
  112. </div>
  113.  
  114. <div class="row">
  115.  
  116. <div class="col-md-3">
  117. <div class="card card-content">
  118. <div class="card-content">
  119. <div class="alert alert-primary">
  120. <h4 class="card-title text-center"><span>Deposit Balance</span></h4>
  121. </div>
  122.  
  123. <div class="card card-stats">
  124. <div class="card-header" data-background-color="green">
  125. <i class="material-icons">done_all</i>
  126. </div>
  127. <div class="card-content">
  128. <p class="category">{{config('app.currency_code')}}</p>
  129. <h3 class="card-title">{{config('app.currency_symbol')}} {{$user->profile->deposit_balance + 0}}</h3>
  130. </div>
  131.  
  132. </div>
  133. </div>
  134.  
  135. </div>
  136. </div>
  137.  
  138.  
  139. </div>
  140. </div>
  141.  
  142.  
  143.  
  144. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement