@extends('layouts.admin') @section('title', 'Edit Inventory') @section('page_title', 'Edit Inventory') @section('content')
Back to Inventory
Update Inventory
@if($inventory->product)
Product: {{ $inventory->product->name }} (SKU: {{ $inventory->product->sku }})
@endif
@csrf @method('PUT')
@error('quantity')
{{ $message }}
@enderror Current stock: {{ $inventory->quantity }} units
@error('location')
{{ $message }}
@enderror
@error('last_updated')
{{ $message }}
@enderror
Cancel
Stock Status

{{ $inventory->quantity }} units

@if($inventory->quantity <= 5) @elseif($inventory->quantity <= 10) @else @endif
Last Updated: {{ $inventory->last_updated?->format('M d, Y H:i') ?? 'Never' }}
Location: {{ $inventory->location ?? 'Not specified' }}
@endsection