@if (Session::has('success'))
| Field | Value |
|---|---|
| {{ Form::label('commissioner_first_name', 'First Name', array('style' => 'font-weight: bold;')) }} | {{ Form::text('commissioner_first_name', $info['loa_user']->user->first_name, array('style' => 'width: 100px;')) }} |
| {{ Form::label('commissioner_last_name', 'Last Name', array('style' => 'font-weight: bold;')) }} | {{ Form::text('commissioner_last_name', $info['loa_user']->user->last_name, array('style' => 'width: 100px;')) }} |
| {{ Form::label('commissioner_email', 'Email', array('style' => 'font-weight: bold;')) }} | {{ Form::text('commissioner_email', $info['loa_user']->user->email, array('style' => 'width: 250px;')) }} |
| {{ Form::label('commissioner_mobile', 'Mobile', array('style' => 'font-weight: bold;')) }} | {{ Form::text('commissioner_mobile', $mobile, array('style' => 'width: 125px;', 'data-format' => 'phone')) }} |
This will set the commissioner's password to a randomly generated password. The commissioner will then be sent an automated email with instructions on how to log into the OSAA website with their new, temporary password. The commissioner will have to change their password once they successfully log in with the password included in the notification email. You will be blind copied on the email.
This is the same process as if the user clicked the "I forgot my account information" link on the login form.
If you are sure you want to wipe out the commissioner's existing password and send them an email with a new, temporary password, click the Recover Password button.
This will set the commissioner's password to the password you type in above. The commissioner will then be sent an automated email with instructions on how to log into the OSAA website with their new password. The commissioner will not have to change their password. You will be blind copied on the email.
To manually set this commissioner's password, type in a new password and click the Set Password button.
| New Commissioner | |
|---|---|
| {{ Form::label('new_commissioner_first_name', 'First Name', array('style' => 'font-weight: bold;')) }} | {{ Form::text('new_commissioner_first_name', null, array('style' => 'width: 100px;')) }} |
| {{ Form::label('new_commissioner_last_name', 'Last Name', array('style' => 'font-weight: bold;')) }} | {{ Form::text('new_commissioner_last_name', null, array('style' => 'width: 100px;')) }} |
| {{ Form::label('new_commissioner_email', 'Email', array('style' => 'font-weight: bold;')) }} | {{ Form::text('new_commissioner_email', null, array('style' => 'width: 250px;')) }} |
| {{ Form::label('new_commissioner_mobile', 'Mobile', array('style' => 'font-weight: bold;')) }} | {{ Form::text('new_commissioner_mobile', null, array('style' => 'width: 125px;', 'data-format' => 'phone')) }} |
| {{ Form::label('new_commissioners_password', 'Password', array('style' => 'font-weight: bold;')) }} | {{ Form::text('new_commissioners_password', 'Cmsh2018', array('style' => 'width: 125px;')) }} |
| Existing User | |
|---|---|
| {{ Form::label('existing_commissioner_id', 'User ID', array('style' => 'font-weight: bold;')) }} | {{ Form::text('existing_commissioner_id', null, array('style' => 'width: 100px;')) }} |