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

16 lines
316 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>
<form action="{{ baseUrl("/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