@include('layouts.header', ['title' => 'Upload Inventory'])
@include('layouts.navbar') @include('layouts.sidebar')

Upload Inventory

@csrf
@error('location')
{{ $message }}
@enderror
@error('building_no')
{{ $message }}
@enderror
@error('building_name')
{{ $message }}
@enderror
Download Sample File: bulk-inventory-upload-sample.csv @error('upload_rooms')
{{ $message }}
@enderror
@if (isset($roomTypes) && count($roomTypes))

Room Types

Please refer to the list of acceptable room types that should be entered in the 'Room Type' column of the Excel file. Ensure the spelling of each room type matches exactly before uploading.
    @foreach ($roomTypes as $roomType)
  1. {{ $roomType }}
  2. @endforeach
@endif
@include('layouts.footer')