15 lines
No EOL
859 B
PHP
15 lines
No EOL
859 B
PHP
{!! Form::open(['action' => route('portal.my_subscriptions.create', 2), 'method' => 'POST', 'class' => '']) !!}
|
|
<div class="card-body">
|
|
<h4>{{ __('abo.my_address') }}</h4>
|
|
<p>{{ __('abo.my_address_check_info') }}<br>
|
|
<a href="{{route('portal.my_data.edit')}}"><i class="fa fa-edit"></i> {{ __('navigation.my_data') }} {{ __('abo.edit') }}</a></p>
|
|
<p>{!! __('order.reorder_info_2', ['country' => $shopping_user->getDeliveryCountry(), 'link' => route('portal.my_data.edit')]) !!}</p>
|
|
@include('admin.customer._customer_detail')
|
|
|
|
</div>
|
|
<div class="card-footer">
|
|
<button type="submit" class="btn btn-default" name="action" value="back">{{ __('abo.back') }}</button>
|
|
<button type="submit" class="btn btn-secondary float-right" name="action" value="next">{{ __('abo.confirm_and_next') }}</button>
|
|
</div>
|
|
|
|
{!! Form::close() !!} |