@extends('layouts.dashboard') @section('template_title') Create New User @endsection @section('header') Create New Users @endsection @section('breadcrumbs')
  • {{ trans('titles.app') }} chevron_right
  • Users List chevron_right
  • Create New User
  • @endsection @section('content')

    Create New User

    {!! Form::open(array('action' => 'UsersManagementController@store', 'method' => 'POST', 'role' => 'form')) !!}
    {!! Form::text('name', NULL, array('id' => 'name', 'class' => 'mdl-textfield__input', 'pattern' => '[A-Z,a-z,0-9]*')) !!} {!! Form::label('name', trans('auth.name') , array('class' => 'mdl-textfield__label')); !!} Letters and numbers only
    {!! Form::email('email', NULL, array('id' => 'email', 'class' => 'mdl-textfield__input')) !!} {!! Form::label('email', trans('auth.email') , array('class' => 'mdl-textfield__label')); !!} Please Enter a Valid {{ trans('auth.email') }}
    {!! Form::text('first_name', NULL, array('id' => 'first_name', 'class' => 'mdl-textfield__input', 'pattern' => '[A-Z,a-z]*')) !!} {!! Form::label('first_name', 'First Name', array('class' => 'mdl-textfield__label')); !!} Letters only
    {!! Form::text('last_name', NULL, array('id' => 'last_name', 'class' => 'mdl-textfield__input', 'pattern' => '[A-Z,a-z]*')) !!} {!! Form::label('last_name', 'Last Name', array('class' => 'mdl-textfield__label')); !!} Letters only
    {!! Form::label('role', trans('forms.label-userrole_id'), array('class' => 'mdl-textfield__label mdl-selectfield__label')); !!} Select user access level
    {!! Form::password('password', array('id' => 'password', 'class' => 'mdl-textfield__input')) !!} {!! Form::label('password', 'Password', array('class' => 'mdl-textfield__label')); !!} Please enter a valid password
    {!! Form::password('password_confirmation', array('id' => 'password_confirmation', 'class' => 'mdl-textfield__input')) !!} {!! Form::label('password_confirmation', 'Confirm Password', array('class' => 'mdl-textfield__label')); !!} Must match password
    {{-- SAVE BUTTON--}} {!! Form::button('save Save New User', array('class' => 'dialog-button-save mdl-button mdl-js-button mdl-js-ripple-effect mdl-color--green mdl-color-text--white mdl-button--raised margin-bottom-1 margin-top-1 margin-top-0-desktop margin-right-1 padding-left-1 padding-right-1 ')) !!}
    {!! Form::button('save', array('class' => 'dialog-button-icon-save mdl-button mdl-button--icon mdl-js-button mdl-js-ripple-effect', 'title' => 'Save New User')) !!} reply Back to Users
    @include('dialogs.dialog-save') {!! Form::close() !!}
    @endsection @section('footer_scripts') @include('scripts.mdl-required-input-fix') @include('scripts.gmaps-address-lookup-api3') @endsection