@extends('layouts.layouts_dashboard') @section('title', 'Edit Bahan') @section('content')
@if ($errors->any())

Error!

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')

Edit Bahan

@error('nama_bahan')
{{ $message }}
@enderror
@error('satuan')
{{ $message }}
@enderror
Rp
@error('hpp')
{{ $message }}
@enderror
@error('stok')
{{ $message }}
@enderror

Harga Grosir

Atur tier harga grosir untuk pembelian dalam jumlah banyak

@if ($bahan->wholesalePrices && $bahan->wholesalePrices->count() > 0) @foreach ($bahan->wholesalePrices as $price)
Kosongkan untuk unlimited
@endforeach @endif
@push('scripts') @endpush @endsection