Skip to content

Commit f60322c

Browse files
authored
Merge pull request jeremykenedy#140 from rubendahl/user-form-github-username-placerholder-translation-fix
User profile edit form field for github user name use correct placeholder text.
2 parents 14f1365 + 2602fa8 commit f60322c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/profiles/edit.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
<div class="margin-bottom-2 form-group has-feedback {{ $errors->has('github_username') ? ' has-error ' : '' }}">
174174
{!! Form::label('github_username', trans('profile.label-github_username') , array('class' => 'col-sm-4 control-label')); !!}
175175
<div class="col-sm-6">
176-
{!! Form::text('github_username', old('github_username'), array('id' => 'github_username', 'class' => 'form-control', 'placeholder' => trans('profile.ph-twitter_username'))) !!}
176+
{!! Form::text('github_username', old('github_username'), array('id' => 'github_username', 'class' => 'form-control', 'placeholder' => trans('profile.ph-github_username'))) !!}
177177
<span class="glyphicon glyphicon-pencil form-control-feedback" aria-hidden="true"></span>
178178
@if ($errors->has('github_username'))
179179
<span class="help-block">

0 commit comments

Comments
 (0)