mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
4b0c4e621a
Also changed up how base URL setting was being done by manipulating incoming request URLs instead of altering then on generation.
17 lines
381 B
PHP
17 lines
381 B
PHP
@extends('simple-layout')
|
|
|
|
@section('body')
|
|
|
|
<div class="container small">
|
|
|
|
<div class="py-m">
|
|
@include('settings.navbar', ['selected' => 'roles'])
|
|
</div>
|
|
|
|
<form action="{{ url("/settings/roles/new") }}" method="POST">
|
|
@include('settings.roles.form', ['title' => trans('settings.role_create')])
|
|
</form>
|
|
</div>
|
|
|
|
@stop
|