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

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

@endsection @section('content')

{{ !empty($inventoryType->title) ? ucfirst($inventoryType->title) : 'Inventory Type' }}

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