96 lines
4.8 KiB
PHP
96 lines
4.8 KiB
PHP
@extends('layouts.account', ['title' => __('tnc.title')])
|
|
|
|
@section('content')
|
|
|
|
<div class="col-lg-11 col-xl-10 col-xxl-9">
|
|
<h1 class="h2 pb-2 pb-sm-3 pb-lg-4">{{ __('tnc.title') }}</h1>
|
|
<hr class="mt-0">
|
|
|
|
<div class="h6 pt-2 pt-lg-3"><span class="text-body-secondary fw-medium">{{ __('tnc.last_updated') }}</span> {{ __('tnc.last_updated_date') }}</div>
|
|
<p>{{ __('tnc.welcome') }}</p>
|
|
|
|
<h2 class="h4 pt-3 pt-lg-4">{{ __('tnc.overview_title') }}</h2>
|
|
<p>{{ __('tnc.overview_content') }}</p>
|
|
<p>{{ __('tnc.overview_additional') }}</p>
|
|
|
|
<h2 class="h4 pt-3 pt-lg-4">{{ __('tnc.use_title') }}</h2>
|
|
<p>{{ __('tnc.use_content') }}</p>
|
|
<h3 class="h6">{{ __('tnc.use_restriction_title') }}</h3>
|
|
<ul class="gap-3">
|
|
@foreach(__('tnc.use_restrictions') as $restriction)
|
|
<li>{{ $restriction }}</li>
|
|
@endforeach
|
|
</ul>
|
|
|
|
<h2 class="h4 pt-3 pt-lg-4">{{ __('tnc.ordering_title') }}</h2>
|
|
<p>{{ __('tnc.ordering_content') }}</p>
|
|
<ul class="gap-3">
|
|
@foreach(__('tnc.ordering_restrictions') as $restriction)
|
|
<li>{{ $restriction }}</li>
|
|
@endforeach
|
|
</ul>
|
|
|
|
<h2 class="h4 pt-3 pt-lg-4">{{ __('tnc.payments_title') }}</h2>
|
|
<p>{{ __('tnc.payments_content') }}</p>
|
|
|
|
<h2 class="h4 pt-3 pt-lg-4">{{ __('tnc.user_conduct_title') }}</h2>
|
|
<p>{{ __('tnc.user_conduct_content') }}</p>
|
|
<h3 class="h6 pt-2">{{ __('tnc.intellectual_property_title') }}</h3>
|
|
<p>{{ __('tnc.intellectual_property_content') }}</p>
|
|
<h3 class="h6 pt-2">{{ __('tnc.third_party_links_title') }}</h3>
|
|
<p>{{ __('tnc.third_party_links_content') }}</p>
|
|
<h3 class="h6 pt-2">{{ __('tnc.disclaimer_title') }}</h3>
|
|
<p>{{ __('tnc.disclaimer_content') }}</p>
|
|
<h3 class="h6 pt-2">{{ __('tnc.limitation_title') }}</h3>
|
|
<p>{{ __('tnc.limitation_content') }}</p>
|
|
|
|
<h2 class="h4 pt-3 pt-lg-4">{{ __('tnc.agreement_title') }}</h2>
|
|
<p>{{ __('tnc.agreement_content') }}</p>
|
|
<p>{{ __('tnc.agreement_additional') }}</p>
|
|
|
|
<h2 class="h4 pt-3 pt-lg-4">{{ __('tnc.contact_title') }}</h2>
|
|
<p>{{ __('tnc.contact_content') }}</p>
|
|
<ul class="list-unstyled pb-1">
|
|
<li class="nav pt-1">
|
|
<a class="nav-link align-items-start fs-base p-0" href="tel:+15053753082">
|
|
<i class="ci-phone fs-xl mt-1 me-2"></i>
|
|
+1 50 537 53 082
|
|
</a>
|
|
</li>
|
|
<li class="nav pt-1">
|
|
<a class="nav-link align-items-start fs-base p-0" href="mailto:contact@catzillastore.com">
|
|
<i class="ci-mail fs-xl mt-1 me-2"></i>
|
|
contact@catzillastore.com
|
|
</a>
|
|
</li>
|
|
<li class="nav pt-1">
|
|
<a class="nav-link align-items-start fs-base p-0" href="#!">
|
|
<i class="ci-map-pin fs-xl mt-1 me-2"></i>
|
|
12 Beale St. Suite 600 San Francisco, California 94105
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<p class="pb-3 mb-0">{{ __('tnc.help_text') }} <a class="fw-medium" href="{{ route('second', ['help', 'topics-v1'])}}">{{ __('tnc.help_link') }}</a></p>
|
|
|
|
<hr class="my-3 my-lg-4">
|
|
|
|
<h2 class="h5 pt-3 mb-lg-4">{{ __('tnc.helpful_question') }}</h2>
|
|
<div class="d-flex gap-3">
|
|
<button type="button" class="btn btn-outline-secondary">
|
|
<i class="ci-thumbs-up fs-base me-2 ms-n1"></i>
|
|
{{ __('tnc.yes_button') }}
|
|
</button>
|
|
<button type="button" class="btn btn-outline-secondary">
|
|
<i class="ci-thumbs-down fs-base me-2 ms-n1"></i>
|
|
{{ __('tnc.no_button') }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
@section('scripts')
|
|
@endsection
|