@extends('layouts.app') @section('scripts') @endsection @section('content')
<- Back

{{ __('Module') }}: {{ $module->name }}

{{ __('Video details') }}

{{ __('Drag and move the hotspots to position them in the video') }}

{{ __('List of hotspots') }}

@php $x = 1; @endphp @foreach($video->hotspots as $hotspot) @php $x++; @endphp @endforeach
{{ __('Num.') }} {{ __('Title') }} {{ __('Type') }} {{ __('Full length') }} {{ __('Start time') }} {{ __('Duration') }} {{ __('Actions') }}
{{ $x }} {{ $hotspot->name }} {{ $hotspot->type }} {{ $hotspot->full_time ? 'Yes' : 'No' }} {{ $hotspot->position ? $hotspot->position : '-' }} {{ $hotspot->duration ? $hotspot->duration : '-' }}

{{ __('Custom hotspot icon') }}

@csrf
{{ __('Format:') }} {{ __('png, jpg, jpeg') }}
{{ __('Dimensions:') }} 96x96
@if ($errors->has('hotspot')) {{ $errors->first('hotspot') }} @else
{{ __('The hotspot image is required.') }}
@endif