@extends('layouts.admin') @section('title', 'Edit Bottle Intake · Aromaniacs ERP') @section('overline', 'Inventory') @section('heading', 'Edit Bottle Intake') @section('content')

Original volume

{{ number_format((float) $intake->volume_ml, 2) }} ml

Ledger balance

{{ number_format((float) $ledgerBalanceMl, 2) }} ml

Remaining (from sales)

{{ number_format((float) $remainingMl, 2) }} ml

@csrf @method('PUT')

Optional physical reading from the vial. Saving writes a stock adjustment so the ledger matches this level. Confirmed orders update the ledger automatically.

@error('current_level_ml')

{{ $message }}

@enderror
@include('admin.bottle-intakes._form')
@endsection