@extends('base') @section('head') @stop @section('content')

Sorting Pages & ChaptersFor {{ $book->name }}

@include('books/sort-box', ['book' => $book, 'bookChildren' => $bookChildren])
@if(count($books) > 1)

Show Other Books

@foreach($books as $otherBook) @if($otherBook->id !== $book->id)
{{ $otherBook->name }}
@endif @endforeach
@endif
{!! csrf_field() !!}
Cancel
@stop