@extends('simple-layout') {{--TODO - Load books in via selector interface--}} @section('body')
@include('partials.breadcrumbs', ['crumbs' => [ $book, $book->getUrl('/sort') => [ 'text' => trans('entities.books_sort'), 'icon' => '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