@extends('layouts.layout-2') @section('content')

{{ __('navigation.my_orders') }}

{!! Form::open(['action' => route('user_order_my_delivery', [$for, $delivery_id]), 'class' => 'form-horizontal']) !!}

{{ __('navigation.do_order') }}

@if(Auth::user()->isVIP())
VIP only

{{ __('abo.abo_delivery') }}

@if(\App\Services\AboHelper::userHasAbo(Auth::user()))

{{ __('navigation.myabo') }} {{ __('edit') }}

@else @endif
    {!! __('abo.pros_list') !!}
@endif

@if(Session::has('custom-error'))
{{ Session::get('custom-error') }}
@else @if($shopping_user)

@else
@endif @endif
{!! Form::close() !!} @endsection