-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbtc_payment.tpl
29 lines (29 loc) · 1.09 KB
/
btc_payment.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<div class="panel">
<div class="panel-body pagination2">
<div class="row">
<div class="alert alert-info">
<span style="align-content: center"> This page will redirect you to site outside of {$site->title} to make your payment
<br>
If, for some reason, your account isn't updated automaticaly, please send us an email or use our contact form to inform us so we can fix the issue.</span>
</div>
</div>
</div>
<table class="data table table-condensed responsive-utilities jambo-table">
{foreach $donation as $donate}
{{Form::open(['url' => 'btc_payment?action=submit'])}}
<thead>
<tr>
<th>{$donate->name} ({$donate->donation}$)</th>
</tr>
</thead>
<td>
{{Form::hidden('price', {$donate->donation})}}
{{Form::hidden('role', {$donate->id})}}
{{Form::hidden('rolename', {$donate->name})}}
{{Form::hidden('addyears', {$donate->addyears})}}
{{Form::submit('Pay with BTC', ['class' => 'btn btn-primary'])}}
</td>
{{Form::close()}}
{/foreach}
</table>
</div>