2015-08-08 21:05:30 +02:00
|
|
|
@extends('base')
|
|
|
|
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2015-12-30 22:38:20 +01:00
|
|
|
<div class="container small" ng-non-bindable>
|
2015-08-08 21:05:30 +02:00
|
|
|
<h1>Create User</h1>
|
|
|
|
|
2016-08-14 13:29:35 +02:00
|
|
|
<form action="{{ baseUrl("/settings/users/create") }}" method="post">
|
2015-08-08 21:05:30 +02:00
|
|
|
{!! csrf_field() !!}
|
2016-08-14 13:29:35 +02:00
|
|
|
@include('users/forms/' . $authMethod)
|
2015-08-08 21:05:30 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|