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

{{ __('Add video to module:') }}
{{ $module->name }}

@csrf
{{ __('Format:') }} {{ __('png, jpg, jpeg') }}
{{ __('Dimensions:') }} 180x270
@if ($errors->has('image')) {{ $errors->first('image') }} @else
{{ __('The image field is required.') }}
@endif
{{ __('Format:') }} {{ __('mp4') }}
@if ($errors->has('video')) {{ $errors->first('video') }} @else
{{ __('The video field is required.') }}
@endif
@if ($errors->has('orientation')) {{ $errors->first('orientation') }} @else
{{ __('The orientation field is required.') }}
@endif
@endsection