@extends('themes.basic.layouts.single') @section('section', translate('Download', 'download pages')) @section('title', $fileEntry->name) @section('hide_header', true) @section('content')
@include('themes.basic.files.common.title', [ 'fileEntry' => $fileEntry, ])
@if ($settings->general->default_captcha && $downloadPlan->download_captcha)
@php $callback = ['data-callback' => 'recaptchaCallback']; @endphp
@endif @csrf
@if ($themeSettings->download_pages->file_about) @include('themes.basic.files.common.about', [ 'fileEntry' => $fileEntry, ]) @endif
@if ($themeSettings->download_pages->extra_text_sections && $themeSettings->download_pages->page2_extra_text)
{!! $themeSettings->download_pages->page2_extra_text !!}
@endif
@push('config') @include('themes.basic.files.common.config', [ 'fileEntry' => $fileEntry, 'downloadPlan' => $downloadPlan, ]) @endpush @endsection