mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-02-10 10:10:45 +08:00
16 lines
316 B
PHP
16 lines
316 B
PHP
@extends('base')
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="container small" ng-non-bindable>
|
|
<h1>Create User</h1>
|
|
|
|
<form action="{{ baseUrl("/settings/users/create") }}" method="post">
|
|
{!! csrf_field() !!}
|
|
@include('users/forms/' . $authMethod)
|
|
</form>
|
|
</div>
|
|
|
|
@stop
|