2015-08-08 15:05:30 -04:00
|
|
|
@extends('base')
|
|
|
|
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2015-09-03 11:51:10 -04:00
|
|
|
<div class="container small">
|
2015-08-08 15:05:30 -04:00
|
|
|
<h1>Create User</h1>
|
|
|
|
|
|
|
|
<form action="/users/create" method="post">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
@include('users/form')
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|