I have the following in my route:
Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.request');
My reset.blade under auth is looks like
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-heading">Reset Password</div>
<div class="panel-body">
<form class="form-horizontal" method="POST" action="">
<input type="hidden" name="token" value="">
<div class="form-group">
<label for="email" class="col-md-4 control-label">E-Mail Address</label>
<div class="col-md-6">
<input id="email" type="email" class="form-control" name="email" value="" required autofocus>
@if ($errors->has('email'))
<span class="help-block">
<strong></strong>
</span>
@endif
</div>
</div>
<div class="form-group">
<label for="password" class="col-md-4 control-label">Password</label>
<div class="col-md-6">
<input id="password" type="password" class="form-control" name="password" required>
@if ($errors->has('password'))
<span class="help-block">
<strong></strong>
</span>
@endif
</div>
</div>
<div class="form-group">
<label for="password-confirm" class="col-md-4 control-label">Confirm Password</label>
<div class="col-md-6">
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" required>
@if ($errors->has('password_confirmation'))
<span class="help-block">
<strong></strong>
</span>
@endif
</div>
</div>
<div class="form-group">
<div class="col-md-6 col-md-offset-4">
<button type="submit" class="btn btn-primary">
Reset Password
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
When I tried to access http://127.0.0.1:8000/administrator/password/reset/2dfc0ea2306e3d60dcc915b26cefc8779921bf99183084b3d765cf0a348f32c6 , it show me the error;
Missing required parameters for [Route: password.request] [URI: administrator/password/reset/{token}]. (View: /var/www/html/shoptomydoor/resources/views/auth/passwords/reset.blade.php)
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire