• This project
    • Loading...
  • Sign in

Зуев Егор / wiki.dev

Logo belkanton
Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • wiki.dev
  • resources
  • views
  • users
  • create.blade.php
  • Dan Brown's avatar
    Sanitized user-text from angular & fixed some z-index bugs on pages · 5bf811a4
    5bf811a4
    Dan Brown authored 2015-12-30 21:38:20 +0000
create.blade.php 274 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="/users/create" method="post">
            {!! csrf_field() !!}
            @include('users/form')
        </form>
    </div>

@stop