@extends('layouts.banking') @section('title', 'سحب من الصندوق') @section('content')
سحب من الصندوق: {{ $cashbox->name }}
@if (session('error')) @endif
الرصيد الحالي: {{ number_format($cashbox->current_balance, $cashbox->currency->decimal_places) }} {{ $cashbox->currency->symbol }}
العملة: {{ $cashbox->currency->code }} ({{ $cashbox->currency->name }})
@csrf
{{ $cashbox->currency->symbol }}
الحد الأقصى للسحب هو {{ number_format($cashbox->current_balance, $cashbox->currency->decimal_places) }} {{ $cashbox->currency->symbol }} @error('amount') {{ $message }} @enderror
@error('notes') {{ $message }} @enderror
إلغاء
@endsection