[Help] Retaliation laravel 5.1 RoleplayCMS

FaLcOnPuNcH

Member
May 1, 2013
37
0
Hi, I recently download the RetaliationCMS but I have a issue with my register.blade.php. Every time I try to register, I enter my credentials, and press "Register" It will refresh the page without updating my account in the database.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/resources/assets/css/bootstrap.min.css" type="text/css">
<link href="/resources/assets/css/habbo/login.css" rel="stylesheet">
<title>{{ .env('SITE_NAME') }} || Registration</title>
</head>
<body>
<div class="landing"></div>
<div class="login">
<img src="/resources/assets/img/logo.png">
@if (Session::has('message'))
<div class="alert alert-{{ Session::get('type') }}">
{{ Session::get('message') }}
</div>
@endif
<form method="post">
<input type="text" name="username" placeholder="User-Name">
<input type="mail" name="mail" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<input type="password" name="password_confirmation" placeholder="Password Again">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<p>Already a member? <a href="/index">Click here</a></p>
<input type="submit" value="Register">
</form>
<div class="notify">
<b>Attention all users</b>
We are still in development, therefore the website as well as the client is undergoing changes actively. Be wary of bugs you may encounter.
</div>
</div>
<footer>
Designed by <a>Francis Joseph</a>
</footer>
</body>
 

FaLcOnPuNcH

Member
May 1, 2013
37
0
Let me look for it.
 

<form method="post">
<input type="text" name="username" placeholder="User-Name">
<input type="mail" name="mail" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<input type="password" name="password_confirmation" placeholder="Password Again">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<p>Already a member? <a href="/index">Click here</a></p>
<input type="submit" value="Register">
</form>

Here you go.​
 

FaLcOnPuNcH

Member
May 1, 2013
37
0
Alright
 
Alright so my password is varchar 75. Here is the screenshot you requested.
3kqM9mm.png
 

Users who are viewing this thread

Top