@extends('layout.main') @section('title', 'Update Stok - '.$reseller->name) @section('content')
@csrf @method('PUT') @foreach($products as $product) @php $current = $currentStocks[$product->id]->stock ?? 0; @endphp @endforeach
Produk Stok Saat Ini Stok Baru (Sisa)
{{ $product->name }} {{ $current }} @error('stock.'.$product->id)
{{ $message }}
@enderror
Kembali Simpan
@endsection