@extends('base') @section('head') @stop @section('content')
@include('books._breadcrumbs', ['book' => $book])

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

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

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

@foreach($books as $otherBook) @if($otherBook->id !== $book->id)
{{ $otherBook->name }}
@endif @endforeach
@endif
{!! csrf_field() !!}
{{ trans('common.cancel') }}
@stop