@extends('admin.layouts.app') @section('title', 'Edit Edition') @section('content')

Edit Edition: {{ $edition->title }}

Back to Editions
@if($errors->any())
@endif
@csrf @method('PUT')
Edition Information
Cover Image
@if($edition->cover_image)
Cover
@endif
Leave empty to keep current cover. Recommended: 800x1100px
PDF File
@if($edition->pdf_file)
@endif
Replace existing PDF (Optional, Max 50MB)
Pages ({{ $edition->pages->count() }})
@if($edition->pages->count() > 0)
@foreach($edition->pages->sortBy('page_number') as $page)
Page {{ $page->page_number }}
Page {{ $page->page_number }}
@endforeach

Add More Pages
@endif
New pages will be added after existing pages
Actions
Info
  • Created: {{ $edition->created_at->format('d M, Y h:i A') }}
  • Updated: {{ $edition->updated_at->format('d M, Y h:i A') }}
  • Total Pages: {{ $edition->pages->count() }}
  • Status: @if($edition->status == 'published') Published @else Draft @endif
@push('scripts') @endpush @endsection