@extends('simple-layout') @section('toolbar')
@include('books._breadcrumbs', ['book' => $book])
@stop @section('body')

@icon('sort') {{ trans('entities.books_sort') }}

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

@icon('book') {{ trans('entities.books_sort_show_other') }}

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