@if (isset($add_video_gallery))
{{ Form::open([
'class' => 'form-horizontal',
'files' => true,
'route' => 'video-gallery-update',
'method' => 'POST',
'enctype' => 'multipart/form-data',
]) }}
@else
@if (userPermission('video-gallery-store'))
{{ Form::open([
'class' => 'form-horizontal',
'files' => true,
'route' => 'video-gallery-store',
'method' => 'POST',
'enctype' => 'multipart/form-data',
]) }}
@endif
@endif
@if (isset($add_video_gallery))
@lang('front_settings.edit_video_gallery')
@else
@lang('front_settings.video_gallery')
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if(config('app.app_sync'))
@else
@endif
{{ Form::close() }}