@extends('users.home.index') @section('content')
Submission ID: {{ $submission->id }} @if($submission->isCanEdit()) isCanEdit()) ? " disabled" : NULL }}>Edit @endif
@include('partials.singlepaper_content')
@foreach($versions as $ver)
@if($ver->version < 2) First Version : @else Camera Ready Version {{ $ver->version - 1 }} : @endif Download @if($ver->version === 1 && $submission->isPaperResolved()) Show Review Results @endif @if($ver->notes != NULL)
Revision Notes :
{{ $ver->notes }}
@endif
@endforeach @if($submission->isPaperResolved() && $submission->getStatusCode() !== 'WAIT_ORG' && $submission->getStatusCode() !== 'WAIT_PAY' && $submission->getStatusCode() !== 'REGISTERED' && $submission->getStatusCode() !== 'WAIT_ORG_PAY')
{{ csrf_field() }}
@if ($errors->has('paper')) {{ $errors->first('paper') }} @else Please upload file with .doc / .docx extension only. @endif
@endif
Status : {{ $submission->getLastPaperReadableStatus() }}
@if($submission->getStatusCode() === 'WAIT_PAY' || $submission->getStatusCode() === 'WAIT_ORG_PAY')
Payment Section
@if($submission->getStatusCode() === 'WAIT_PAY') @if($submission->payment_notes !== '')

Notes From Organizer
{{ $submission->payment_notes }}

@endif
{{ csrf_field() }}
@if ($errors->has('payment_proof')) {{ $errors->first('payment_proof') }} @else Please upload file with .jpg/ .jpeg / .png / .bmp extension only. @endif
@endif @if($submission->getStatusCode() === 'WAIT_ORG_PAY')
Payment Proof Payment Proof
@endif
@endif
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) || count($authors) < 4)
@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
@endif
@endsection