added other email field
This commit is contained in:
@@ -152,7 +152,8 @@ class UserController extends Controller {
|
|||||||
|
|
||||||
$user_logins_data = array(
|
$user_logins_data = array(
|
||||||
'name' => $post['fullname'],
|
'name' => $post['fullname'],
|
||||||
'email' => $post['email']
|
'email' => $post['email'],
|
||||||
|
'other_email' => $post['other_email'],
|
||||||
);
|
);
|
||||||
|
|
||||||
$user_info_data = array(
|
$user_info_data = array(
|
||||||
|
|||||||
@@ -316,6 +316,9 @@
|
|||||||
|
|
||||||
<div style="border: 1px solid #e2e2e2; padding: 10px;">
|
<div style="border: 1px solid #e2e2e2; padding: 10px;">
|
||||||
<a @if($getSubtotal <= 0 ) disabled @endif href="{{ url('getCheckout') }}" class="btn btn-primary w-100" style="background-color: #ffc300; border-color: #e2ad00; text-align: -webkit-center;" ><img src="{{asset('/public/images/paypal1.png')}}" class="img img-responsive" style="height:30px;"></a><br>
|
<a @if($getSubtotal <= 0 ) disabled @endif href="{{ url('getCheckout') }}" class="btn btn-primary w-100" style="background-color: #ffc300; border-color: #e2ad00; text-align: -webkit-center;" ><img src="{{asset('/public/images/paypal1.png')}}" class="img img-responsive" style="height:30px;"></a><br>
|
||||||
|
<!-- <div class="my-2">
|
||||||
|
<button class="btn btn-lg btn-info w-100">Checkout with Voucher</button>
|
||||||
|
</div> -->
|
||||||
<div class="bg-info p-2 mt-2">
|
<div class="bg-info p-2 mt-2">
|
||||||
Be advised payments made on merchbay will show up as crewsportswear on your receipt
|
Be advised payments made on merchbay will show up as crewsportswear on your receipt
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -41,6 +41,12 @@
|
|||||||
<input type="email" class="form-control" name="email" placeholder="Please enter your email address" value="{{ $array_profile_info[0]->email }}">
|
<input type="email" class="form-control" name="email" placeholder="Please enter your email address" value="{{ $array_profile_info[0]->email }}">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Other Email Address</label>
|
||||||
|
<input type="email" class="form-control" name="other_email" placeholder="Please enter your other email address" value="{{ $array_profile_info[0]->other_email }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>Mobile Number</label>
|
<label>Mobile Number</label>
|
||||||
@@ -49,8 +55,7 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>Birthday</label>
|
<label>Birthday</label>
|
||||||
|
|||||||
@@ -48,6 +48,15 @@
|
|||||||
</small></p>
|
</small></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-4">
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Other Email Address</label>
|
||||||
|
<p>
|
||||||
|
{{ $array_profile_info[0]->other_email }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>Mobile Number</label>
|
<label>Mobile Number</label>
|
||||||
@@ -60,8 +69,7 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>Birthday</label>
|
<label>Birthday</label>
|
||||||
|
|||||||
Reference in New Issue
Block a user