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

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

@endsection @section('content')

{{ !empty($inventory->name) ? ucfirst($inventory->name) : 'Inventory' }}

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