@extends('admin.layout') @section('title', 'Edit Video') @section('page_title', 'Edit Video') @section('extra_styles') @endsection @section('content') {{-- ── Page header ── --}}

Edit Video

{{-- ── Alerts ── --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
{{-- ── Left: form ── --}}
Video Details
@csrf @method('PUT') {{-- Title --}}
@error('title')
{{ $message }}
@enderror
{{-- Description --}}
@error('description')
{{ $message }}
@enderror
{{-- Visibility / Type / Status --}}
@error('visibility')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
{{-- Download Access --}}
@error('download_access')
{{ $message }}
@enderror
Cancel View Video
{{-- ── Right: sidebar ── --}}
{{-- Thumbnail --}}
@if($video->thumbnail) {{ $video->title }} @else
@endif
{{-- Stats --}}
Video Info
Uploaded {{ $video->created_at->format('M d, Y') }}
Views {{ number_format(\DB::table('video_views')->where('video_id', $video->id)->count()) }}
Likes {{ number_format(\DB::table('video_likes')->where('video_id', $video->id)->count()) }}
Duration {{ $video->duration ? gmdate('H:i:s', $video->duration) : '—' }}
Dimensions {{ $video->width ?? '—' }} × {{ $video->height ?? '—' }}
File size {{ $video->size ? number_format($video->size / 1024 / 1024, 1) . ' MB' : '—' }}
Orientation {{ $video->orientation ?? '—' }}
{{-- Danger zone --}}
Danger Zone
{{-- ── Delete confirmation dialog ── --}}
Delete Video

You are about to permanently delete {{ $video->title }}.

The video file, thumbnail, and all associated data will be removed. This cannot be undone.
@endsection @section('scripts') @endsection