@extends('layouts.app') @section('title', 'Edit Release') @section('idname', 'single') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT')
Indicate the name of this release as it should appear publicly. The title must be accurate and correctly formatted in the language of the release and must not include names of artists or any additional information.
Indicate how to differentiate this release from the original if it is a different version (e.g. Remix, Live, Radio Edit, Bonus Track Version, etc.).
Select the language in which the release and tracks titles are written.
Select the type of release from Album (at least 30 minutes of music or 7 tracks), Single (up to 3 tracks of less than 10 minutes each), EP (up to 3 tracks with a track of at least 10 minutes and a total length of up to 30 minutes) or Compilation (tracks previously released separately at least 18 months in between).
Size: 3000x3000 to 5000x5000 pixels (perfect square). Format: JPG, TIFF or PNG. Max file size: 36 MB.
@if ($release->cover_art)
Current Cover Art
@endif
Select the music category that best describes the content of this release. Use the most specific genre that applies rather than a generic one.
Select a secondary genre to add more information about the content of this release, if applicable.
Indicate the UPC (Universal Product Code) or EAN (European Article Number) code that identifies this release within a digital or physical shop, or request a new one. This is a 12-14 digit alphanumeric code.
@foreach (old('contributors', $release->contributors) as $index => $contributor)
@endforeach
Add the names of contributors and their roles for this release. You can add multiple contributors.

List all the contributors of the track:

  • Primary artist (Artist, band or project name)
  • Composer (Full name of the composer)
  • Lyricist (Full name of the author)
  • Featuring, Producer, Remixer, etc
Indicate when you want this release to be available digitally. The distribution and review process can take several days, we recommend setting the release date at least 7 days in the future. Please note that the scheduled time only applies to the channels that support this specification.
By selecting "Local Time", the release will be progressively available for all territories according to their local time. While by selecting a specific time zone, the release will be available simultaneously for all territories at the same time. In this case, the release time will be calculated from the time zone you have specified.
Select the type of release from Album (at least 30 minutes of music or 7 tracks), Single (up to 3 tracks of less than 10 minutes each), EP (up to 3 tracks with a track of at least 10 minutes and a total length of up to 30 minutes) or Compilation (tracks previously released separately at least 18 months in between).
Indicate the copyright holder of this release (composition, lyrics and/or cover art). Please note that this does not necessarily have to be the owner of the sound recordings. Keep the spelling and formatting of the owner's name in accordance with the legal documents.
Indicate the holder of the publishing rights of the recordings in this release. Keep the spelling and formatting of the owner's name in accordance with the legal documents.
@foreach ($audioTracks as $track) @endforeach
Track Title
{{ $loop->iteration }} {{ $track->audio_preview }} Play @if (Auth::user()->role_id == 1 || Auth::user()->role_id == 3) view delete @elseif (Auth::user()->role_id == 2) edit delete @endif