@extends('layouts.admin.index') @section('content')
Admin Homepage
Info:
  • Upload Video: Uploading a new video will replace the current one. For multiple videos, combine them into a single file before uploading.
  • Once submitted, the homepage will update with the new video.

Manage Homepage Video

Upload or Replace Homepage Video
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@csrf @method('PUT')
@error('video')
{{ $message }}
@enderror
@if(isset($homepage->video))
Current Video:
@csrf
@else

No video currently uploaded.

@endif
@endsection