@extends('layouts.app') @section('content')
@include('partials.header') @include('partials.sidebar')

Edit Welcome Greeting

Edit Details Welcome Greeting

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
For accessibility. If blank, the title will be used.
@if ($welcomeGreeting->hasImage())
{{ $welcomeGreeting->alt_text }}
@endif
@if ($summary['general'])
General Assignment

Applied to all rooms.

@elseif ($summary['personal_rooms']->count() > 0)
Personal Assignment

Applied to {{ $summary['personal_rooms']->count() }} specific room(s):

@foreach ($summary['personal_rooms'] as $room) {{ $room->room }} @endforeach
@else
No Assignment

Not assigned to any rooms.

@endif
Cancel
@endsection