@extends('organizers.dashboard') @section('content')
Submission ID: {{ $submission->id }} Edit

{{ $submission->title }}

Keywords: {{ $submission->keywords }}

Abstract:
{{ $submission->abstract }}

File Version {{ $submission->active_version }} : Download

Status : On Review
Authors
@foreach($authors as $author) @endforeach
No Name E-mail Phone Action
{{ $author->author_no}} {{ $author->name }} @if($author->is_primary) Contact Author @endif {{ $author->email }} {{ $author->phone }} @if(!$author->is_primary) @endif @if($author->author_no != 1) @endif @if($author->author_no != $authorCount) @endif
@if (isset($edit))
Edit Author
@else
Add More Author
@endif
@if (isset($edit))
@else @endif {!! csrf_field() !!}
@if (old('name') !== NULL) @elseif(isset($edit)) @else @endif @if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if (old('email') !== NULL) @elseif(isset($edit)) @else @endif @if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if (old('phone') !== NULL) @elseif(isset($edit)) @else @endif @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if(isset($edit)) Cancel Edit @endif
@endsection