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

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

@endsection @section('content')

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

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