generated from boboko/starter
30 lines
851 B
PHP
30 lines
851 B
PHP
{{-- A guest's wishlist (from the cookie). Logged-in users get account/wishlist instead. --}}
|
|||
|
|
@extends('layouts.app')
|
||
|
|
|
||
|
|
@section('title', __('storefront.account.nav_wishlist'))
|
||
|
|
|
||
|
|
@push('seo')
|
||
|
|
<meta name="robots" content="noindex, follow">
|
||
|
|
@endpush
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
|
||
|
|
<section class="flex flex-col gap-12 px-4 py-20 sm:px-8 lg:px-16">
|
||
|
|
|
||
|
|
<div class="flex flex-col gap-6">
|
||
|
|
<h1 class="font-display text-h3 font-black tracking-tight sm:text-h2">
|
||
|
|
{{ __('storefront.account.nav_wishlist') }}
|
||
|
|
</h1>
|
||
|
|
|
||
|
|
<p>
|
||
|
|
{{ __('storefront.wishlist.guest_hint') }}
|
||
|
|
<a href="{{ route('login') }}" class="font-bold underline hover:no-underline">{{ __('storefront.auth.login') }}</a>
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
@include('wishlist.list')
|
||
|
|
|
||
|
|
</section>
|
||
|
|
|
||
|
|
@endsection
|