Skip to content

Commit

Permalink
Merge pull request #1277 from innocente205/patch-1
Browse files Browse the repository at this point in the history
Update send.blade.php
  • Loading branch information
HDVinnie authored Apr 17, 2020
2 parents 6db1388 + 33cc3b4 commit f7cc012
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions resources/views/pm/send.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@
<div class="form-group">
<label for="users">@lang('common.username')</label>
<label>
<input name="receiver_id" class="form-control" placeholder="@lang('common.username')"
required>
<label>
<input name="receiver_id" class="form-control" placeholder="@lang('common.username')" {{request()->has('username') ? 'readonly' : 'required'}} value="{{request()->has('username') ? request()->get('username') : '' }}">
</label>
</label>
</div>

Expand Down

0 comments on commit f7cc012

Please sign in to comment.