@extends('layouts.master') @section('page-top')

Submit New Artwork

@endsection @section('page-content')
@csrf
@if($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{-- file upload area --}}
Upload Artwork File

Drag or choose your file to upload.
It will be resized to 3,000px square (thanks Apple.)

{{-- actual upload which is hidden --}} {{-- our custom upload button --}}
@error('file')
{{ $message }}
@enderror
{{-- end upoad file area --}}
@error('title')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
{{-- End .row --}}

By submitting this artwork, you agree you have the rights to publish the artwork and are placing this artwork under a non-revokable Creative Commons CC BY-SA 4.0 DEED Attribution-ShareAlike 4.0 International license.

{{-- End .row --}}
{{-- End .create-item-wrapper --}}
{{-- ENd .row --}}
@endsection