@extends('app::layouts.app') @section('title', 'Edit Video') @section('content')
@include('panel.partials.sidebar', ['activeMenu' => 'videos'])

Edit Video

Update listing assignment, title, status, or replace the source file.

@if (session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT')
Back to videos

Current file

@if($video->playableUrl()) @else
Video preview is not available yet.
@endif
Status
{{ $video->statusLabel() }}
Duration
{{ $video->durationLabel() }}
Resolution
{{ $video->resolutionLabel() }}
Size
{{ $video->sizeLabel() }}
Listing
{{ $video->listing?->title ?? '-' }}
@endsection