When placing the following in my view
<?php echo '<pre>';var_dump(session()->all()); ?>
It returns
array (size=6)
'_token' => string 'HDKkFo2JRNj9IN26WLuDP0jYogRX1Q3WoL0gxt6Z' (length=40)
'_flash' =>
array (size=2)
'old' =>
array (size=1)
0 => string 'Message' (length=7)
'new' =>
array (size=0)
empty
'_previous' =>
array (size=1)
'url' => string 'http://homestead3.test/admin/documents/add' (length=42)
'url' =>
array (size=0)
empty
'login_web_59ba36addc2b2f9401580f014c7f58ea4e30989d' => int 1
'Message' => string 'This is a Success Message' (length=25)
It looks like the Message variable is there, now sure why it won't display with
{{$message}}