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-02-16 22:25:11 +01:00
|
|
|
<form action="/settings/users/create" method="post">
|
2015-08-08 21:05:30 +02:00
|
|
|
{!! csrf_field() !!}
|
2016-01-13 23:22:30 +01:00
|
|
|
@include('users.forms.' . $authMethod)
|
2015-08-08 21:05:30 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|