nyaabooru/resources/views/livewire/pages/upload.blade.php
Jaiden e7b31a716c
Some checks failed
Docker / build (push) Has been cancelled
Upgrade webawesome framework
2025-06-30 20:18:30 -04:00

23 lines
800 B
PHP

<div class="wa-stack wa-gap-3xl">
<h1>Upload</h1>
<form wire:submit="createPost" class="wa-stack wa-gap-xl">
<wa-card class="wa-stack">
<input wire:model="file" type="file" label="file" placeholder="Select a file to upload." />
@error('file')
<span class="wa-caption-m">{{ $message }}</span>
@enderror
</wa-card>
<wa-select wire:model="rating" label="Rating" value="safe" hint="Select a content rating that matches the file.">
<wa-option value="safe">Safe</wa-option>
<wa-option value="suggestive">Suggestive</wa-option>
<wa-option value="explicit">Explicit</wa-option>
</wa-select>
<wa-button type="submit" variant="brand" wire:loading.attr="disabled">
<livewire:app.icon slot="prefix" name="arrow-up-from-bracket" />
Upload
</wa-button>
</form>
</div>