@extends('layouts.master') @section('css') @section('title') {{ __('home.edit_bom_title', ['code' => $bom->code]) }} @stop @endsection @section('content')

{{ __('home.edit_bom_title', ['code' => $bom->code]) }}

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

{{ __('home.raw_materials_required') }}

@foreach($bom->items as $index => $item) @endforeach
{{ __('home.raw_material') }} {{ __('home.units') }} {{ __('home.required_qty') }} {{ __('home.scrap_percent') }} {{ __('home.item_notes') }}
{{ __('home.cancel') }}
@endsection @section('js') @endsection