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

16 lines
290 B
PHP
Raw Normal View History

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