I receive this error message after presing the selected value and next.
UnexpectedValueException in Response.php line 450: The Response content must be a string or object implementing __toString(), "object" given.
views/welcome.blade.php
<div class="content">
        <div class="content">
        <div class="title m-b-md">
            MENU CSS
        </div>
        Pick a new color for menu css:<br><br>
        <!-- <form action="{{route('menu.color')}}" method="post"> -->
        <form action="route/to/thing" method="post">
        <!-- <form method="POST" action="/posts"> -->
            {{ csrf_field() }}  
            <select name="cars">
                <option value="red">Red</option>
                <option value="blue">Blue</option>
                <option value="green">Green</option>
                <option value="orange">Orange</option>
            </select>
        <br><br>
        <input type="submit" value="Submit">
        </form>                  
        </div>
    </div>    
</body>