@layouts.main({ title: 'Dashboard — Imago Vault' }) @slot('main')
{{-- ── Header ──────────────────────────────────────────────────────── --}}

Media Library

{{ files.length }} file{{ files.length !== 1 ? 's' : '' }} stored

Logout
{{-- ── Upload zone ─────────────────────────────────────────────────── --}}
{{-- Default hint (hidden once a file is selected) --}}

Drag & drop a file here, or

Images (JPG, PNG, GIF, WebP) · Videos (MP4, MOV, AVI, WebM) · Max 100 MB

{{-- Preview area (shown after file selection) --}} {{-- Invisible file input covers the whole zone --}}
{{-- Progress bar (shown during upload) --}} {{-- Action buttons (shown after file selection) --}} {{-- Inline result message --}}
{{-- ── Gallery ──────────────────────────────────────────────────────── --}}

Uploaded Files

@if(files.length === 0)

No files uploaded yet. Drop one above to get started.

@else
@each(file in files)
{{-- Media preview --}} @if(file.type === 'image')
{{ file.filename }}
@elseif(file.type === 'video')
@else
@end {{-- Info row --}}

{{ file.filename }}

Open
@end
@end
{{-- ── JavaScript ───────────────────────────────────────────────────── --}} @endslot @end