mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 00:17:34 -05:00 
			
		
		
		
	Background
This commit is contained in:
		
							parent
							
								
									14f6f03835
								
							
						
					
					
						commit
						b6c538564e
					
				@ -2,7 +2,7 @@
 | 
				
			|||||||
@section('meta_title', ctrans('texts.sign_up_with_wepay'))
 | 
					@section('meta_title', ctrans('texts.sign_up_with_wepay'))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@section('body')
 | 
					@section('body')
 | 
				
			||||||
    
 | 
					<div class="bg-gray-50">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <div class="flex flex-col justify-center items-center mt-10">
 | 
					    <div class="flex flex-col justify-center items-center mt-10">
 | 
				
			||||||
        <img src="{{ asset('images/wepay.svg') }}" alt="We Pay">
 | 
					        <img src="{{ asset('images/wepay.svg') }}" alt="We Pay">
 | 
				
			||||||
@ -10,7 +10,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    @livewire('wepay-signup', ['user_id' => $user_id, 'company_key' => $company_key])               
 | 
					    @livewire('wepay-signup', ['user_id' => $user_id, 'company_key' => $company_key])               
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					</div>
 | 
				
			||||||
@endsection
 | 
					@endsection
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@push('footer')
 | 
					@push('footer')
 | 
				
			||||||
 | 
				
			|||||||
@ -199,8 +199,7 @@ Route::get('webcron', 'WebCronController@index');
 | 
				
			|||||||
Route::group(['middleware' => ['locale']], function () {
 | 
					Route::group(['middleware' => ['locale']], function () {
 | 
				
			||||||
    Route::get('stripe_connect/{token}', 'StripeConnectController@initialize')->name('stripe_connect.initialization');
 | 
					    Route::get('stripe_connect/{token}', 'StripeConnectController@initialize')->name('stripe_connect.initialization');
 | 
				
			||||||
    Route::get('stripe_connect/completed', 'StripeConnectController@completed')->name('stripe_connect.return');
 | 
					    Route::get('stripe_connect/completed', 'StripeConnectController@completed')->name('stripe_connect.return');
 | 
				
			||||||
    Route::get('wepay/signup/{token}', 'WePayController@signup')->name('wepay.signup');
 | 
					
 | 
				
			||||||
    Route::post('wepay/processSignup', 'WePayController@processSignup')->name('wepay.process_signup');
 | 
					 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Route::fallback('BaseController@notFound');
 | 
					Route::fallback('BaseController@notFound');
 | 
				
			||||||
 | 
				
			|||||||
@ -20,6 +20,9 @@ Route::post('password/email', 'Auth\ForgotPasswordController@sendResetLinkEmail'
 | 
				
			|||||||
Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.reset');
 | 
					Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.reset');
 | 
				
			||||||
Route::post('password/reset', 'Auth\ResetPasswordController@reset')->name('password.update');
 | 
					Route::post('password/reset', 'Auth\ResetPasswordController@reset')->name('password.update');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Route::get('wepay/signup/{token}', 'WePayController@signup')->name('wepay.signup');
 | 
				
			||||||
 | 
					Route::post('wepay/processSignup', 'WePayController@processSignup')->name('wepay.process_signup');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
 * Social authentication
 | 
					 * Social authentication
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user