@extends('layouts.app') @section('page-title', __('Add User')) @section('page-heading', __('Create New User')) @section('breadcrumbs') @stop @section('content') @include('partials.messages')
@csrf
@lang('User Details')

@lang('A general user profile information.')

@include('user.partials.details', ['edit' => false, 'profile' => false])
@lang('Login Details')

@lang('Details used for authenticating with the application.')

@include('user.partials.auth', ['edit' => false])

@stop @section('scripts') {!! JsValidator::formRequest('Vanguard\Http\Requests\User\CreateUserRequest', '#user-form') !!} @stop