mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Various layout updates and tiny upgrade fixes [skip ci]
This commit is contained in:
@@ -109,7 +109,7 @@ class RegisterController extends Controller
|
||||
*
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function showRegistrationForm()
|
||||
public function showRegistrationForm(Request $request)
|
||||
{
|
||||
// TODO move to FireflyConfig
|
||||
$showDemoWarning = env('SHOW_DEMO_WARNING', false);
|
||||
@@ -123,7 +123,9 @@ class RegisterController extends Controller
|
||||
return view('error', compact('message'));
|
||||
}
|
||||
|
||||
return view('auth.register', compact('showDemoWarning'));
|
||||
$email = $request->old('email');
|
||||
|
||||
return view('auth.register', compact('showDemoWarning', 'email'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user