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

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

@endsection @section('content')

{{__('inventory.current_stock')}} {{ $selectedInventory->currentStockQuantity }}

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