@extends('layouts.admin') @section('content')
{{ csrf_field() }} @include('includes.form-success') @if (count($order->melhorenvio_requests) > 0)
    {{__('This order already has an Melhor Envio request')}}
@endif

{{ __('Please confirm purchase') }}

{{ __('Protocol') }}:

{{$melhorenvio_cart->protocol}}

{{ __('Price') }}:

{{'R$'.number_format($melhorenvio_cart->price, 2, ',', '.')}}

{{ __('Balance') }}:

{{'R$'.number_format($melhorenvio_balance->balance, 2, ',', '.')}}

{{ __('Reserved') }}:

{{'R$'.number_format($melhorenvio_balance->reserved, 2, ',', '.')}}

{{ __('Debts') }}:

{{'R$'.number_format($melhorenvio_balance->debts, 2, ',', '.')}}

{{ __('Avaiable Balance') }}:

{{'R$'.number_format($melhorenvio_balance->balance - $melhorenvio_balance->reserved - $melhorenvio_balance->debts, 2, ',', '.')}}
({{__("By confirming, the amount of the purchase and previous debts will be debited from the balance")}})
@endsection @section('scripts') @endsection