@@ -122,7 +122,7 @@ |
||
| 122 | 122 | * Handle a registration request for the application. |
| 123 | 123 | * |
| 124 | 124 | * @param \Illuminate\Http\Request $request |
| 125 | - * @return \Illuminate\Http\Response |
|
| 125 | + * @return \Illuminate\Http\RedirectResponse |
|
| 126 | 126 | */ |
| 127 | 127 | public function register(Request $request) |
| 128 | 128 | { |
@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | return [ |
| 4 | 4 | |
| 5 | - /* |
|
| 5 | + /* |
|
| 6 | 6 | |-------------------------------------------------------------------------- |
| 7 | 7 | | Look & feel customizations |
| 8 | 8 | |-------------------------------------------------------------------------- |
@@ -11,29 +11,29 @@ discard block |
||
| 11 | 11 | | |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | - // Project name. Shown in the breadcrumbs and a few other places. |
|
| 15 | - 'project_name' => 'Backpack', |
|
| 14 | + // Project name. Shown in the breadcrumbs and a few other places. |
|
| 15 | + 'project_name' => 'Backpack', |
|
| 16 | 16 | |
| 17 | - // Menu logos |
|
| 18 | - 'logo_lg' => '<b>Back</b>pack', |
|
| 19 | - 'logo_mini' => '<b>B</b>p', |
|
| 17 | + // Menu logos |
|
| 18 | + 'logo_lg' => '<b>Back</b>pack', |
|
| 19 | + 'logo_mini' => '<b>B</b>p', |
|
| 20 | 20 | |
| 21 | 21 | |
| 22 | - // Developer or company name. Shown in footer. |
|
| 23 | - 'developer_name' => 'Cristian Tabacitu', |
|
| 22 | + // Developer or company name. Shown in footer. |
|
| 23 | + 'developer_name' => 'Cristian Tabacitu', |
|
| 24 | 24 | |
| 25 | - // Developer website. Link in footer. |
|
| 26 | - 'developer_link' => 'http://tabacitu.ro', |
|
| 25 | + // Developer website. Link in footer. |
|
| 26 | + 'developer_link' => 'http://tabacitu.ro', |
|
| 27 | 27 | |
| 28 | - // Show powered by Laravel Backpack in the footer? |
|
| 29 | - 'show_powered_by' => true, |
|
| 28 | + // Show powered by Laravel Backpack in the footer? |
|
| 29 | + 'show_powered_by' => true, |
|
| 30 | 30 | |
| 31 | - // The AdminLTE skin. Affects menu color and primary/secondary colors used throughout the application. |
|
| 32 | - 'skin' => 'skin-purple', |
|
| 33 | - // Options: skin-black, skin-blue, skin-purple, skin-red, skin-yellow, skin-green, skin-blue-light, skin-black-light, skin-purple-light, skin-green-light, skin-red-light, skin-yellow-light |
|
| 31 | + // The AdminLTE skin. Affects menu color and primary/secondary colors used throughout the application. |
|
| 32 | + 'skin' => 'skin-purple', |
|
| 33 | + // Options: skin-black, skin-blue, skin-purple, skin-red, skin-yellow, skin-green, skin-blue-light, skin-black-light, skin-purple-light, skin-green-light, skin-red-light, skin-yellow-light |
|
| 34 | 34 | |
| 35 | 35 | |
| 36 | - /* |
|
| 36 | + /* |
|
| 37 | 37 | |-------------------------------------------------------------------------- |
| 38 | 38 | | Registration Open |
| 39 | 39 | |-------------------------------------------------------------------------- |
@@ -44,6 +44,6 @@ discard block |
||
| 44 | 44 | | |
| 45 | 45 | */ |
| 46 | 46 | |
| 47 | - 'registration_open' => true, |
|
| 47 | + 'registration_open' => true, |
|
| 48 | 48 | |
| 49 | 49 | ]; |
@@ -2,7 +2,7 @@ |
||
| 2 | 2 | |
| 3 | 3 | // All BackPack routes are placed under the 'admin' prefix, to minimize possible conflicts with your application. This means your login/logout/register urls are also under the 'admin' prefix, so you can have separate logins for users and admins. |
| 4 | 4 | Route::group(['middleware' => 'web', 'prefix' => 'admin'], function () { |
| 5 | - // Admin authentication routes |
|
| 5 | + // Admin authentication routes |
|
| 6 | 6 | Route::auth(); |
| 7 | 7 | |
| 8 | 8 | // Other Backpack\Base routes |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | |
| 20 | 20 | <p> |
| 21 | 21 | <?php |
| 22 | - $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>"; |
|
| 22 | + $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>"; |
|
| 23 | 23 | ?> |
| 24 | 24 | {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!} |
| 25 | 25 | </p> |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | |
| 20 | 20 | <p> |
| 21 | 21 | <?php |
| 22 | - $default_error_message = "An internal server error has occurred. If the error persists please contact the development team."; |
|
| 22 | + $default_error_message = "An internal server error has occurred. If the error persists please contact the development team."; |
|
| 23 | 23 | ?> |
| 24 | 24 | {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!} |
| 25 | 25 | </p> |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | |
| 20 | 20 | <p> |
| 21 | 21 | <?php |
| 22 | - $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>"; |
|
| 22 | + $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>"; |
|
| 23 | 23 | ?> |
| 24 | 24 | {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!} |
| 25 | 25 | </p> |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | |
| 20 | 20 | <p> |
| 21 | 21 | <?php |
| 22 | - $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>"; |
|
| 22 | + $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>"; |
|
| 23 | 23 | ?> |
| 24 | 24 | {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!} |
| 25 | 25 | </p> |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | |
| 20 | 20 | <p> |
| 21 | 21 | <?php |
| 22 | - $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>"; |
|
| 22 | + $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>"; |
|
| 23 | 23 | ?> |
| 24 | 24 | {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!} |
| 25 | 25 | </p> |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | |
| 20 | 20 | <p> |
| 21 | 21 | <?php |
| 22 | - $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>"; |
|
| 22 | + $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>"; |
|
| 23 | 23 | ?> |
| 24 | 24 | {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!} |
| 25 | 25 | </p> |