@if ($siteLogo) {{ $siteTitle ?: config('app.name', 'SealShare') }} @else @endif

{{ $siteTitle ?: config('app.name', 'SealShare') }}

{{ $siteDescription ?: __('Share your files safely and securely') }}

@if (! $authenticated) {{-- Password form --}}
@else {{-- File list --}}
@foreach ($share->files as $file)
{{ $file->relative_path ?: $file->original_name }} ({{ Number::fileSize($file->file_size) }})
@endforeach
@if ($share->expires_at)

{{ __('Expires') }}: {{ $share->expires_at->diffForHumans() }}

@endif @if ($share->files->count() > 1) {{ __('Download All as ZIP') }} @else {{ __('Download') }} @endif
@endif