BookStack/resources/views/users/create.blade.php

16 lines
299 B
PHP
Raw Normal View History

2015-08-08 19:05:30 +00:00
@extends('base')
@section('content')
<div class="container small" ng-non-bindable>
2015-08-08 19:05:30 +00:00
<h1>Create User</h1>
2016-02-16 21:25:11 +00:00
<form action="/settings/users/create" method="post">
2015-08-08 19:05:30 +00:00
{!! csrf_field() !!}
@include('users.forms.' . $authMethod)
2015-08-08 19:05:30 +00:00
</form>
</div>
@stop