Skip to content

Commit

Permalink
Add demo password and email in login form
Browse files Browse the repository at this point in the history
  • Loading branch information
efthakhar committed Aug 23, 2023
1 parent 274ea08 commit 2c6d0f8
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions resources/views/auth/login-form.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@
@if ($errors->has('email'))
<div class="text-danger my-1">{{ $errors->first('email') }}</div>
@endif
<input type="email" id="email" class="form-control"
name="email" value="{{ @old('email')}}">
{{-- <input type="email" id="email" class="form-control"
name="email" value="{{ @old('email')}}"> --}}
<input type="email" id="email" class="form-control"
name="email" value="[email protected]">
</div>
</div>
<div class="col-md-12">
Expand All @@ -46,8 +48,10 @@
@if ($errors->has('password'))
<div class="text-danger my-1">{{ $errors->first('password') }}</div>
@endif
{{-- <input type="password" id="email" class="form-control" name="password"
value="{{ @old('password')}}"> --}}
<input type="password" id="email" class="form-control" name="password"
value="{{ @old('password')}}">
value="**invextry**">
</div>
</div>
</diV>
Expand Down

0 comments on commit 2c6d0f8

Please sign in to comment.