@extends('layouts.admin') @section('content')
{{ csrf_field() }} @include('includes.form-success') @if (!empty($aex_track))
    {{__('This order already has an AEX request')}}
@endif

{{ __('Please confirm delivery location') }}

{{ __('Destination City') }}:

{{ __('Customer address') }}:

{{ $order->shipping_city == null ? $order->customer_city : $order->shipping_city }} - {{ $order->shipping_state == null ? $order->customer_state : $order->shipping_state }} - {{ $order->shipping_country == null ? $order->customer_country : $order->shipping_country }}
@endsection @section('scripts') @endsection