update for version 1.0.2
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
@section('body')
|
||||
@if(Session::has('status'))
|
||||
<div class="alert alert-success alert-dismissable">
|
||||
<i class="fa fa-check-circle"> </i> <b> Success </b>
|
||||
<i class="fa fa-check-circle"> </i> <b> {!! Lang::get('lang.success') !!} </b>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
{{Session::get('status')}}
|
||||
</div>
|
||||
@@ -11,23 +11,23 @@
|
||||
<!-- failure message -->
|
||||
@if(Session::has('errors'))
|
||||
<div class="alert alert-danger alert-dismissable">
|
||||
<i class="fa fa-ban"> </i> <b> Alert! </b>
|
||||
<i class="fa fa-ban"> </i> <b> {!! Lang::get('lang.alert') !!}! </b>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
{!! $errors->first('email') !!}
|
||||
</div>
|
||||
@endif
|
||||
<p class="login-box-msg">Enter E-mail to reset password</p>
|
||||
<p class="login-box-msg">{!! Lang::get('lang.enter_email_to_reset_password') !!}</p>
|
||||
<!-- form open -->
|
||||
<form role="form" method="POST" action="{{ url('/password/email') }}">
|
||||
<!-- Email -->
|
||||
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
||||
<!-- Email -->
|
||||
<div class="input-group margin">
|
||||
<input type="email" class="form-control" name="email" placeholder="E-mail" value="{{ old('email') }}">
|
||||
<span class="input-group-btn"><button type="submit" class="btn btn-primary btn-block btn-flat">Send</button></span>
|
||||
<input type="email" class="form-control" name="email" placeholder="{!! Lang::get('lang.email') !!}" value="{{ old('email') }}">
|
||||
<span class="input-group-btn"><button type="submit" class="btn btn-primary btn-block btn-flat">{!! Lang::get('lang.send') !!}</button></span>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<a href="{{url('auth/login')}}" class="text-center">I know my password</a>
|
||||
<a href="{{url('auth/login')}}" class="text-center">{!! Lang::get('lang.i_know_my_password') !!}</a>
|
||||
<!-- /.login-page -->
|
||||
@stop
|
||||
@stop
|
Reference in New Issue
Block a user