create.blade.php 299 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 @extends('base') @section('content') <div class="container small" ng-non-bindable> <h1>Create User</h1> <form action="/settings/users/create" method="post"> {!! csrf_field() !!} @include('users.forms.' . $authMethod) </form> </div> @stop