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