Alphabets in phone number,Page design change
This commit is contained in:
@@ -20,6 +20,42 @@ Route::group(['middleware' => ['web']], function () {
|
||||
Route::get('social/login/{provider}', ['as' => 'social.login.callback', 'uses' => 'Auth\AuthController@handleProviderCallback']);
|
||||
Route::get('social-sync', ['as' => 'social.sync', 'uses' => 'Client\helpdesk\GuestController@sync']);
|
||||
});
|
||||
|
||||
/*
|
||||
|-------------------------------------------------------------------------------
|
||||
| @Arindam
|
||||
|-------------------------------------------------------------------------------
|
||||
| Here is defining entire routes for the Admin Panel
|
||||
|
|
||||
*/
|
||||
Route::get('password/email/{one?}/{two?}/{three?}/{four?}/{five?}',['as' => 'password.email', 'uses' => 'Auth\PasswordController@getEmail']);
|
||||
Breadcrumbs::register('password.email', function ($breadcrumbs) {
|
||||
$breadcrumbs->parent('/');
|
||||
$breadcrumbs->push('Login', url('auth/login'));
|
||||
$breadcrumbs->push('Forgot Password', url('password/email'));
|
||||
});
|
||||
|
||||
|
||||
// register page
|
||||
Route::get('auth/register/{one?}/{two?}/{three?}/{four?}/{five?}',['as' => 'auth.register', 'uses' => 'Auth\AuthController@getRegister']);
|
||||
Breadcrumbs::register('auth.register', function ($breadcrumbs) {
|
||||
$breadcrumbs->parent('/');
|
||||
$breadcrumbs->push('Login', url('auth/login'));
|
||||
$breadcrumbs->push('Create Account', url('auth/register'));
|
||||
});
|
||||
|
||||
|
||||
// Auth login
|
||||
Route::get('auth/login/{one?}/{two?}/{three?}/{four?}/{five?}',['as' => 'auth.login', 'uses' => 'Auth\AuthController@getLogin']);
|
||||
Breadcrumbs::register('auth.login', function ($breadcrumbs) {
|
||||
$breadcrumbs->parent('/');
|
||||
$breadcrumbs->push('Create Account', url('auth/register'));
|
||||
$breadcrumbs->push('Login', url('auth/login'));
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
Route::get('account/activate/{token}', ['as' => 'account.activate', 'uses' => 'Auth\AuthController@accountActivate']);
|
||||
Route::get('getmail/{token}', 'Auth\AuthController@getMail');
|
||||
Route::get('verify-otp', ['as' => 'otp-verification', 'uses' => 'Auth\AuthController@getVerifyOTP']);
|
||||
|
Reference in New Issue
Block a user