@model ParcelWeb.Core.ViewModels.PaymentVM @{ ViewBag.Title = "Book Shipment"; string accountCode = ViewBag.AccountCode; }

Payment Due: @Model.Shipment.Total.ToString("0.00") @Model.Shipment.Currency.Code

@Model.Shipment.ItemDescription to @Model.Shipment.ReceiverName using @Model.Shipment.DeliveryService.Name
Drop off point: @Model.Shipment.SenderName

@Model.Shipment.SenderAddress.StreetAddress

@Model.Shipment.SenderAddress.CityId, @Model.Shipment.SenderAddress.Country.Name

Delivery Details: @Model.Shipment.ReceiverName

@Model.Shipment.ReceiverAddress.StreetAddress

@Model.Shipment.ReceiverAddress.CityId, @Model.Shipment.ReceiverAddress.Country.Name

Delivery due by:

@Model.Shipment.DeliveryDate.ToString()

Payment Method
@if (Model.AppSettings.IsStripeEnabled) { } @if (Model.AppSettings.IsPayPalEnabled) { }
@section Scripts { @Scripts.Render("~/bundles/jqueryval") }