@extends(get_view('index'))
@section('title'){{ translate('pay') }} - @endsection
@section('header')
@endsection
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if ( cart()['products']->count() > 0 )
@if ( Auth::check() )
@include(get_view('components.cart.payment.payment-form'))
@else
@include(get_view('components.cart.payment.payment-quickly-form'))
@endif
@include(get_view('components.cart.obf-modal'))
@include(get_view('components.cart.mss-modal'))
@include(get_view('components.user.addresses.add-new-address-modal'))
@endif
@endsection
@section('footer')
@endsection