@extends('layouts.master-vnext') @section('page-title') Create user @endsection @section('content') @include('common.errors') {{ Form::open(array('url' => action('UserController@store'))) }} {{ Form::customText('name') }} {{ Form::customText('email') }} {{ Form::customPassword('password') }} {{ Form::customPassword('password_confirmation') }} {{ Form::customSelect('roles[]', $roles, [], ['multiple' => true]) }}