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

16 lines
290 B
PHP

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