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

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

@endsection @section('content')

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

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