@extends('layouts.app') @section('title', isset($item) ? 'Edit Factory Tour' : 'Add Factory Tour') @section('content')

{{ isset($item) ? 'Edit' : 'Add' }} Factory Tour Entry

@csrf @if(isset($item)) @method('PUT') @endif
@if(isset($item) && $item->thumbnail)
@else

Thumbnail will be generated automatically from the video URL.

@endif
@endsection