38 lines
No EOL
1.3 KiB
PHP
38 lines
No EOL
1.3 KiB
PHP
{!! Form::open(['action' => route('portal.my_subscriptions.create', 1), 'method' => 'POST', 'class' => '']) !!}
|
|
<div class="card-body">
|
|
<h4>{{ __('abo.abo_delivery') }}</h4>
|
|
|
|
<p>
|
|
{{ __('abo.abo_order_info_check') }}
|
|
<hr>
|
|
{{ __('abo.abo_order_info_check_2') }}
|
|
<hr>
|
|
{{ __('abo.abo_order_info_check_3', ['abo-min-duration' => \App\Models\Setting::getContentBySlug('abo-min-duration')]) }}
|
|
</p>
|
|
<hr class="container-m-nx mt-0 mb-4">
|
|
|
|
<h5>{{ __('abo.pros_hl') }}</h5>
|
|
<ul>
|
|
{!! __('abo.pros_list', ['abo-min-duration' => \App\Models\Setting::getContentBySlug('abo-min-duration')]) !!}
|
|
</ul>
|
|
|
|
@if(isset($no_shopping_user) && $no_shopping_user)
|
|
|
|
@endif
|
|
|
|
</div>
|
|
<div class="card-footer">
|
|
@if(!isset($no_shopping_user))
|
|
<div class="text-right">
|
|
<button type="submit" class="btn btn-secondary" name="action" value="next">{{ __('abo.understood_and_next') }}</button>
|
|
</div>
|
|
@else
|
|
<h4>{{ __('navigation.my_data') }}</h4>
|
|
<div class="alert alert-warning">{{ __('abo.change_my_data_empty') }}</div>
|
|
<a href="{{ route('portal.my_data.edit') }}" class="btn btn-secondary"><i
|
|
class="ion ion-md-person text-default mr-1"></i> {{ __('portal.change_my_data_empty_button') }}</a>
|
|
|
|
@endif
|
|
</div>
|
|
|
|
{!! Form::close() !!} |