@extends('layouts.app') @section('title', 'Upload Audio Tracks') @section('idname', 'single') @section('content')
@if (session('success'))
{{ session('success') }}
@endif
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.
@foreach ($audioTracks as $track) @endforeach
Track Title
{{ $loop->iteration }} {{ $track->file_path }} Play @if (Auth::user()->role_id == 1 || Auth::user()->role_id == 3) view @elseif (Auth::user()->role_id == 2) edit delete @endif
@if (Auth::user()->role_id == 1 || Auth::user()->role_id == 3) @endif @endsection