@extends('frontend.layouts.front') @section('title', lang('Download', 'download page')) @section('content')
{!! ads_download_page_top() !!}
@isset($password)

{{ lang('Password Protection', 'password page') }}

{{ lang('Enter the Password to Unlock the Files', 'password page') }}

@csrf
@else

{{ $transfer->subject ? $transfer->subject : lang('Download', 'download page') }}

{{ lang('Transferred files are ready for download', 'download page') }} @if ($transfer->expiry_at)

{{ lang('Expires on', 'download page') }} {{ vDate($transfer->expiry_at) }}

@endif

@foreach ($transferFiles as $transferFile)
{!! fileIcon($transferFile->extension, 'vi-sm') !!}

{{ $transferFile->name }}

{{ vDate($transferFile->created_at) }}

@endforeach
@if ($transfer->storageProvider->symbol == 'local')
@endif
@endisset
{!! ads_download_page_bottom() !!}
@push('config') @endpush @endsection