Skip to content

Commit

Permalink
Merge pull request #42 from selahattinunlu/hotfix/password-placeholde…
Browse files Browse the repository at this point in the history
…r-translation

add translation to password field's placeholder
  • Loading branch information
nWidart committed Nov 30, 2015
2 parents 2173f28 + dc35432 commit 3c081e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/views/public/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</div>
<div class="form-group has-feedback {{ $errors->has('password') ? ' has-error' : '' }}">
<input type="password" class="form-control"
name="password" placeholder="Password" value="{{ old('password')}}">
name="password" placeholder="{{ trans('user::auth.password') }}" value="{{ old('password')}}">
<span class="glyphicon glyphicon-lock form-control-feedback"></span>
{!! $errors->first('password', '<span class="help-block">:message</span>') !!}
</div>
Expand Down

0 comments on commit 3c081e1

Please sign in to comment.