@extends('web.layouts.layout') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['action' => route('web_shop_store', $user_shop->id), 'class' => 'form-horizontal form-prevent-multiple-submits', 'id' => 'shop-form-validations']) !!}
@include('web.shop._intro')
@include('web.shop._shop_products') {{-- @include('web.shop._shipping') --}}
@include('web.shop._shop_cart')
@include('web.components._margin_cart')
@if(Yard::instance('shopping')->isQuickShipping()) @include('web.components._invoice_details_quick') @else @include('web.components._invoice_details') @endif
@include('web.components._checkout')

{{-- @if($user_shop->pick_up) --}}

Kontaktadresse Deines Beraters

{!! nl2br($user_shop->user_address) !!} {{-- @endif --}}
{!! Form::close() !!} @endsection @section('scripts') @endsection