{{ Form::mwiselect('role[]', $roles, (empty($user)) ? 0 : $user->roles->pluck('id'), ['multiple', 'required']) }}
{{ Form::mwitext('name', null, ['required']) }}
{{ Form::mwitext('company_name', null, ['required']) }}
{{ Form::mwitext('phone_number', null, ['required']) }}
{{ Form::mwiemail('email', null, ['required']) }}
{{ Form::mwipass('password') }}

{!! Form::button(' Save', ['type' => 'submit', 'class' => 'btn btn-alt1']) !!}