@extends('layouts.app') @section('title', $warehouse->name) @section('content')
{{ $warehouse->name }}
@method('PUT') @csrf
@if($errors->has('name')) {{ $errors->first('name') }} @endif
@if($errors->has('description')) {{ $errors->first('description') }} @endif
@endsection