Adjust Stock

Correct inventory discrepancies

@if (session()->has('message'))

{{ session('message') }}

@endif @if (session()->has('error'))

{{ session('error') }}

@endif
@error('product_id')

{{ $message }}

@enderror
@error('warehouse_id')

{{ $message }}

@enderror
@if($current_quantity !== null)
Current Stock: {{ number_format($current_quantity) }} units
@endif
@error('new_quantity')

{{ $message }}

@enderror @if($current_quantity !== null && $new_quantity !== '')

Difference: @if($new_quantity > $current_quantity) +{{ number_format($new_quantity - $current_quantity) }} @elseif($new_quantity < $current_quantity) {{ number_format($new_quantity - $current_quantity) }} @else No change @endif

@endif
@error('notes')

{{ $message }}

@enderror
Cancel