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

Edit Welcome Video

Edit Video: {{ $hotelVideo->title }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@error('title')
{{ $message }}
@enderror
{{ $hotelVideo->original_filename }}
Size: {{ $hotelVideo->formatted_file_size }} | Status: @if ($hotelVideo->status === 'active') Active @else Inactive @endif
@if ($hotelVideo->fileExists()) @else
Video file not found
@endif
Allowed formats: MP4, MPEG, MOV, AVI, WebM. Maximum size: 100MB. Leave empty to keep current video. @error('video')
{{ $message }}
@enderror
Back
@endsection