136 lines
6.3 KiB
PHP
136 lines
6.3 KiB
PHP
<spark-subscribe-stripe :user="user" :team="team"
|
|
:plans="plans" :billable-type="billableType" inline-template>
|
|
|
|
<div>
|
|
<!-- Common Subscribe Form Contents -->
|
|
@include('spark::settings.subscription.subscribe-common')
|
|
|
|
<!-- Billing Information -->
|
|
<div class="panel panel-default" v-show="selectedPlan">
|
|
<div class="panel-heading">Billing Information</div>
|
|
|
|
<div class="panel-body">
|
|
<!-- Generic 500 Level Error Message / Stripe Threw Exception -->
|
|
<div class="alert alert-danger" v-if="form.errors.has('form')">
|
|
We had trouble validating your card. It's possible your card provider is preventing
|
|
us from charging the card. Please contact your card provider or customer support.
|
|
</div>
|
|
|
|
<form class="form-horizontal" role="form">
|
|
<!-- Billing Address Fields -->
|
|
@if (Spark::collectsBillingAddress())
|
|
<h2><i class="fa fa-btn fa-map-marker"></i>Billing Address</h2>
|
|
|
|
@include('spark::settings.subscription.subscribe-address')
|
|
|
|
<h2><i class="fa fa-btn fa-credit-card"></i>Credit Card</h2>
|
|
@endif
|
|
|
|
<!-- Cardholder's Name -->
|
|
<div class="form-group">
|
|
<label for="name" class="col-md-4 control-label">Cardholder's Name</label>
|
|
|
|
<div class="col-md-6">
|
|
<input type="text" class="form-control" name="name" v-model="cardForm.name">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Card Number -->
|
|
<div class="form-group" :class="{'has-error': cardForm.errors.has('number')}">
|
|
<label for="number" class="col-md-4 control-label">Card Number</label>
|
|
|
|
<div class="col-md-6">
|
|
<input type="text" class="form-control" name="number" data-stripe="number" v-model="cardForm.number">
|
|
|
|
<span class="help-block" v-show="cardForm.errors.has('number')">
|
|
@{{ cardForm.errors.get('number') }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Security Code -->
|
|
<div class="form-group">
|
|
<label for="number" class="col-md-4 control-label">Security Code</label>
|
|
|
|
<div class="col-md-6">
|
|
<input type="text" class="form-control" name="cvc" data-stripe="cvc" v-model="cardForm.cvc">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Expiration -->
|
|
<div class="form-group">
|
|
<label class="col-md-4 control-label">Expiration</label>
|
|
|
|
<div class="col-md-6">
|
|
<div class="row">
|
|
<!-- Month -->
|
|
<div class="col-xs-6">
|
|
<input type="text" class="form-control" name="month"
|
|
placeholder="MM" maxlength="2" data-stripe="exp-month" v-model="cardForm.month">
|
|
</div>
|
|
|
|
<!-- Year -->
|
|
<div class="col-xs-6">
|
|
<input type="text" class="form-control" name="year"
|
|
placeholder="YYYY" maxlength="4" data-stripe="exp-year" v-model="cardForm.year">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ZIP Code -->
|
|
<div class="form-group" v-if=" ! spark.collectsBillingAddress">
|
|
<label for="number" class="col-md-4 control-label">ZIP / Postal Code</label>
|
|
|
|
<div class="col-md-6">
|
|
<input type="text" class="form-control" name="zip" v-model="form.zip">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Coupon -->
|
|
<div class="form-group" :class="{'has-error': form.errors.has('coupon')}">
|
|
<label class="col-md-4 control-label">Coupon</label>
|
|
|
|
<div class="col-md-6">
|
|
<input type="text" class="form-control" v-model="form.coupon">
|
|
|
|
<span class="help-block" v-show="form.errors.has('coupon')">
|
|
@{{ form.errors.get('coupon') }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Tax / Price Information -->
|
|
<div class="form-group" v-if="spark.collectsEuropeanVat && countryCollectsVat && selectedPlan">
|
|
<label class="col-md-4 control-label"> </label>
|
|
|
|
<div class="col-md-6">
|
|
<div class="alert alert-info" style="margin: 0;">
|
|
<strong>Tax:</strong> @{{ taxAmount(selectedPlan) | currency }}
|
|
<br><br>
|
|
<strong>Total Price Including Tax:</strong>
|
|
@{{ priceWithTax(selectedPlan) | currency }} / @{{ selectedPlan.interval | capitalize }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Subscribe Button -->
|
|
<div class="form-group">
|
|
<div class="col-md-6 col-md-offset-4">
|
|
<button type="submit" class="btn btn-primary" @click.prevent="subscribe" :disabled="form.busy">
|
|
<span v-if="form.busy">
|
|
<i class="fa fa-btn fa-spinner fa-spin"></i>Subscribing
|
|
</span>
|
|
|
|
<span v-else>
|
|
Subscribe
|
|
</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</spark-subscribe-stripe>
|