@extends('layouts.seller.app', ['page' => $menuSeller['wallet']['active'] ?? "", 'sub_page' => $menuSeller['wallet']['route']['withdrawals']['sub_active']]) @section('title', __('labels.withdrawals')) @section('header_data') @php $page_title = __('labels.withdrawals'); $page_pretitle = __('labels.seller') . " " . __('labels.wallet'); @endphp @endsection @php $breadcrumbs = [ ['title' => __('labels.home'), 'url' => route('seller.dashboard')], ['title' => __('labels.wallet'), 'url' => route('seller.wallet.index')], ['title' => __('labels.withdrawals'), 'url' => ''] ]; @endphp @section('seller-content')

{{ __('labels.request_withdrawal') }}

@if($requestWithdrawPermission ?? false)

{{ __('labels.request_withdrawal') }}

@csrf
{{$systemSettings['currencySymbol'] ?? ''}}{{ $wallet ? number_format($wallet->balance - $wallet->blocked_balance, 2) : '0.00' }}
{{$systemSettings['currencySymbol'] ?? ''}}{{ $wallet ? number_format($wallet->blocked_balance , 2) : '0.00' }}
@endif

{{ __('labels.pending_withdrawal_requests') }}

@endsection @push('scripts') @endpush