@extends('backend.layouts.app') @section('page-title', trans('app.add_user')) @section('page-heading', trans('app.create_new_user')) @section('breadcrumbs') @stop @section('content') @include('backend.partials.messages') {!! Form::open(['route' => 'backend.user.store', 'files' => true, 'id' => 'user-form']) !!}
@lang('app.user_details')

A general user profile information.

@include('backend.user.partials.details', ['edit' => false, 'profile' => false])
@lang('app.login_details')

Details used for authenticating with the application.

@include('backend.user.partials.auth', ['edit' => false])
{!! Form::close() !!}
@stop @section('scripts') {!! HTML::script('assets/js/as/profile.js') !!} {!! JsValidator::formRequest('VanguardDK\Http\Requests\User\CreateUserRequest', '#user-form') !!} @stop