mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
16 lines
258 B
PHP
16 lines
258 B
PHP
@extends('base')
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="container small">
|
|
<h1>Create User</h1>
|
|
|
|
<form action="/users/create" method="post">
|
|
{!! csrf_field() !!}
|
|
@include('users/form')
|
|
</form>
|
|
</div>
|
|
|
|
@stop
|