<section class="login"> <div> <img id="the-logo" class="logo-medium" src="/assets/images/global/fipamo-logo-secondary.svg"/> </div> <form action="/login" method="post" enctype="multipart/form-data"> @csrf <input type="text" name="handle" class="form-control" placeholder="Handle" required/> <input type="password" name="password" class="form-control" placeholder="Password" required/> @if($errors->any()) <input type="submit" value="{{$errors->first()}}" name="submit_button"> @else <input type="submit" value="Knock Knock" name="submit_button"> @endif <a href="/dashboard/reset-password">?</a> </form> </section>