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

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

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

@php $autoSortVal = intval(old('auto-sort') ?? $book->sort_rule_id ?? 0); @endphp
@include('books.parts.sort-box', ['book' => $book, 'bookChildren' => $bookChildren])
{{ csrf_field() }}
{{ trans('common.cancel') }}

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

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

@include('entities.selector', ['name' => 'books_list', 'selectorSize' => 'compact', 'entityTypes' => 'book', 'entityPermission' => 'update'])
@stop