I am building an application with Laravel 5.2 and used PHP artisan make: Auth for Authentication which is working fine. But I need to change error message position when user enters wrong credentials in login page.
I want to place error message position just above the submit button. Below is the login. blade.php file code I guess line no 19-21 is using to display that error message. But moving this line of code is not solution as this code is used to display error message related to "email" field as well.
@extends('layouts.app')
@section('content') <div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-heading">Login</div>
<div class="panel-body">
<form class="form-horizontal" role="form" method="POST" action="">
<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="">
@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">
@if ($errors->has('password'))
<span class="help-block">
<strong></strong>
</span>
@endif
</div>
</div>
<div class="form-group">
<div class="col-md-6 col-md-offset-4">
<div class="checkbox">
<label>
<input type="checkbox" name="remember"> Remember Me
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-md-6 col-md-offset-4">
<button type="submit" class="btn btn-primary">
<i class="fa fa-btn fa-sign-in"></i> Login
</button>
<a class="btn btn-link" href="">Forgot Your Password?</a>
</div>
</div>
</form>
</div>
</div>
</div>
</div> </div> @endsection
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire