@extends('layouts.admin-simple') @section('title', 'Edit Video') @section('page-title', 'Edit Video') @section('breadcrumb') @endsection @section('content')

Edit Video

Update video information
@csrf @method('PUT')
@error('title')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('video_type')
{{ $message }}
@enderror
@error('category')
{{ $message }}
@enderror
@error('video_url')
{{ $message }}
@enderror Enter the full URL of your video (YouTube, Vimeo, or direct video file)
@error('duration')
{{ $message }}
@enderror Format: MM:SS (e.g., 5:42)
@error('thumbnail_url')
{{ $message }}
@enderror Optional: Override default thumbnail
@error('thumbnail_file')
{{ $message }}
@enderror Upload a new thumbnail image (JPEG, PNG, GIF, max 2MB). This will replace the current thumbnail. @if($video->thumbnail_path)
check_circle Custom thumbnail currently uploaded
@endif
@error('tags')
{{ $message }}
@enderror Separate tags with commas
Video Preview
{{ $video->title }}
Views: {{ number_format($video->views_count) }}
Created: {{ $video->created_at->format('M d, Y') }}
Publishing Settings
@error('published_at')
{{ $message }}
@enderror
@error('sort_order')
{{ $message }}
@enderror Lower numbers appear first
is_featured) ? 'checked' : '' }}>
is_active) ? 'checked' : '' }}>
SEO Settings
@error('meta_title')
{{ $message }}
@enderror
@error('meta_description')
{{ $message }}
@enderror
@endsection @push('scripts') @endpush