I'm building a website in Laravel. I just wanted to achieve very small functionality but I'm stuck.
When Login fails, Laravel throw error "These credentials do not match our records". I wanted to override this with "No record found. Try again or Register". in this message, Register should be a link for my register page.
I wrote this line under lang->en>auth.php
'failed' => 'No record found. Try again or' .'<a href="/register"></a>',
But my button is not showing in message.
How should I modify my code?