BookStack/resources/views/users/create.blade.php
2016-02-16 21:25:11 +00:00

16 lines
299 B
PHP

@extends('base')
@section('content')
<div class="container small" ng-non-bindable>
<h1>Create User</h1>
<form action="/settings/users/create" method="post">
{!! csrf_field() !!}
@include('users.forms.' . $authMethod)
</form>
</div>
@stop