@extends('layouts.app') @section('content-header')

{{__('inventory.edit_inventory_stock')}}

@endsection @section('content')

{{ !empty($title) ? ucfirst($title) : 'Inventory Stock' }}

{{ csrf_field() }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include ('inventory_stocks.form', ['inventoryStock' => $inventoryStock,])
@endsection