@extends('layouts/contentNavbarLayout')
@section('title', 'Add Room')
@section('content')
Add Room
@if (session('success'))
{{ session('success') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if($floors->isEmpty())
@else
@endif
@endsection
@section('page-script')
@endsection