@extends('backend.layout') @php use Illuminate\Support\Str; use Illuminate\Support\Facades\Storage; @endphp @section('backend_content')

Edit Reel

Update reel details
Back
@csrf @method('PUT') {{-- Shop Selection with Autocomplete --}}
Type and select from suggestion list.
@error('shop_id')
{{ $message }}
@enderror
{{-- Title --}}
@error('title')
{{ $message }}
@enderror
{{-- Caption --}}
@error('caption')
{{ $message }}
@enderror
{{-- Video URL --}}
If no thumbnail image is uploaded, one is auto-generated from this URL. @error('video_url')
{{ $message }}
@enderror
{{-- Thumbnail Image Upload --}}
Accepted: JPEG, PNG, JPG, GIF, WebP. Leave blank to keep current thumbnail.
@if ($reel->thumbnail_url)
Current thumbnail: Current thumbnail
@endif
@error('thumbnail_image')
{{ $message }}
@enderror
{{-- Active toggle --}}
is_active))>
{{-- Actions --}}
Cancel
@endsection