@extends('admin.layout') @section('subtitle') Create User @stop @section('content')

User Create New

{{ Form::open( array('action' => 'UserController@create', 'class' => 'form-horizontal')) }}

Create User

{{ Form::text('username', '', array('class' => 'form-control input-lg', 'placeholder' => 'Username', 'required' => '')) }}
{{ Form::email('email', '', array('class' => 'form-control input-lg', 'placeholder' => 'Email', 'required' => '')) }}
{{ Form::password('password', array('class' => 'form-control input-lg', 'placeholder' => 'Password')) }}
{{ Form::label('role', 'Role', array('control-label')) }} {{ Form::select('role', array('Standard' => 'Standard', 'Admin' => 'Admin'), 'Standard', array('class' => 'form-control')) }}
{{ Form::close() }}
@stop