@extends('simple-layout') @section('body')
@include('partials.breadcrumbs', ['crumbs' => [ $book, $book->getUrl('/sort') => trans('entities.books_sort') ]])

{{ trans('entities.books_sort') }}

@include('books/sort-box', ['book' => $book, 'bookChildren' => $bookChildren])
{!! csrf_field() !!}
{{ trans('common.cancel') }}
@if(count($books) > 1)

{{ trans('entities.books_sort_show_other') }}

@foreach($books as $otherBook) @if($otherBook->id !== $book->id) @endif @endforeach
@endif
@stop @section('scripts') @stop