@extends('app') @section('title', 'Verve Streetwear | Modern Fashion') @php @endphp @section('content') @if(session('error'))
{{ session('error') }}
@endif {{-- HERO --}}

{{ __('shop.hero_title_1') }}

{{ __('shop.shop_now') }}

{{ __('shop.hero_title_2') }}

{{ __('shop.shop_now') }}
{{-- PRODUCTS --}}

{{ __('shop.latest_drops') }}

@if($products->isEmpty())

{{ __('shop.sold_out') }}

{{ __('shop.sold_out_message') }}

@else
@foreach($products as $p) @if($p->slug)
{{ $p->name }} @if($p->stock <= 3 && $p->stock > 0) {{ __('shop.last_items', ['count' => $p->stock]) }} @endif

{{ app()->getLocale() === 'en' && $p->name_en ? $p->name_en : $p->name }}

{{ number_format($p->price/100,2) }} PLN ≈ {{ number_format(($p->price/100) / 4.3, 2) }} EUR

@endif @endforeach
@endif
{{-- LOOKBOOK --}}

{{ __('shop.our_story') }}

{{ __('shop.our_story_text') }}

{{-- CONTACT --}}

{{ __('shop.contact_us') }}

@if(session('contact_success'))
{{ session('contact_success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Email: info@verve.com

{{-- CUSTOMER PHOTOS – infinite scroll --}}

{{ __('shop.customer_photos') }}

@forelse($customerPhotos as $photo) Customer @empty

Brak zdjęć od klientów.

@endforelse {{-- Duplicate for seamless infinite scroll --}} @foreach($customerPhotos as $photo) Customer @endforeach
@endsection