Hi,
I'm trying to integrate Shield into my custom layout.
I copied the login.php view into app/Views/Shield and setup my layout in app/Config/Auth.php
My custom layout takes some custom variables as, for example, the title of the page.
PHP Code:
$view_data = [];
$view_data['pageTitle'] = 'My page title;
$view_data['pageSubtitle'] = 'Page subtitle';
return view('Modules\MyModule\Views\myview', $view_data);
How can I pass these variables in the login View ?
Thanks for your help,
Fred