@extends('layouts.app') @section('title', 'Edit ' . $video->title . ' | ' . config('app.name')) @section('main_class', 'edit-page-only edit-page-responsive') @section('extra_styles') @endsection @section('content')
@csrf @method('PUT') @if(!$video->isAudioOnly()) {{-- Current Thumbnail (non-audio only) --}}
Thumbnail
No thumbnail set
@endif {{-- Title --}}
{{-- Description --}}
@if(!$video->isAudioOnly()) {{-- Thumbnail dropzone (non-audio) --}}

Click to select new thumbnail (optional, max 20MB)

@else {{-- Slides manager (audio tracks only) --}}
No slides yet
@endif {{-- Video Type --}}
Video Type
@foreach([['generic','bi-film','Generic'],['music','bi-music-note','Music'],['match','bi-trophy','Match']] as [$val,$icon,$label]) @endforeach
{{-- Privacy --}}
Privacy
@foreach([['public','bi-globe','Public'],['unlisted','bi-link-45deg','Unlisted'],['private','bi-lock','Private']] as [$val,$icon,$label]) @endforeach
{{-- Download Access --}}
Who can download?
@foreach([['disabled','bi-slash-circle','Disabled'],['everyone','bi-globe','Everyone'],['registered','bi-person-check','Members'],['subscribers','bi-star','Subscribers']] as [$val,$icon,$label]) @endforeach
{{-- Status --}}
{{-- Submit --}}
{{-- Replace File --}}

Replace Media File

Fix a corrupted or missing file without losing any views, likes, or comments.

Tap to choose replacement file
{{-- Danger zone --}}

Danger Zone

@csrf @method('DELETE')
@endsection @section('scripts') @endsection