@extends('admin.layout') @section('content')
{{ translate('Complete Payment') }}
@csrf
@if ($seller->admin_to_pay >= 0) @endif @if ($seller_withdraw_request->amount > $seller->admin_to_pay) @endif
{{ translate('Due to seller') }} {{ single_price($seller->admin_to_pay) }} {{ currency_sympol()['symbol'] }}
{{ translate('Requested amount is') }} {{ single_price($seller_withdraw_request->amount) }} {{ currency_sympol()['symbol'] }}

@if ($seller->admin_to_pay > 0)
@if ($seller_withdraw_request->amount > $seller->admin_to_pay) @else @endif
@endif @if ($seller->admin_to_pay > 0) @endif
@endsection