mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
22 lines
523 B
PHP
22 lines
523 B
PHP
@extends('simple-layout')
|
|
|
|
@section('toolbar')
|
|
<div class="col-sm-12 faded">
|
|
@include('books._breadcrumbs', ['book' => $book])
|
|
</div>
|
|
@stop
|
|
|
|
@section('body')
|
|
|
|
<div class="container" ng-non-bindable>
|
|
<p> </p>
|
|
<div class="card">
|
|
<h3><i class="zmdi zmdi-lock-outline"></i> {{ trans('entities.books_permissions') }}</h3>
|
|
<div class="body">
|
|
@include('form/restriction-form', ['model' => $book])
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|