Skip to content

Commit

Permalink
lets make our lives easier
Browse files Browse the repository at this point in the history
  • Loading branch information
Salah Alkhwlani committed Nov 19, 2021
1 parent 6259363 commit 0d49f6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<label for="email" class="col-md-4 col-form-label text-md-right">{{ __('E-Mail Address') }}</label>

<div class="col-md-6">
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus>
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email', '[email protected]') }}" required autocomplete="email" autofocus>

@error('email')
<span class="invalid-feedback" role="alert">
Expand All @@ -29,7 +29,7 @@
<label for="password" class="col-md-4 col-form-label text-md-right">{{ __('Password') }}</label>

<div class="col-md-6">
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="current-password">
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" value="in ksa" required autocomplete="current-password">

@error('password')
<span class="invalid-feedback" role="alert">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<div class="max-w-6xl mx-auto sm:px-6 lg:px-8">
<div class="flex justify-center pt-8 sm:justify-start sm:pt-0 px-5">
<img src="https://salla.dev/wp-content/themes/salla-portal/dist/img/salla-logo.svg" class="mr-2">
<div class="ml-4 text-lg font-semibold" style="font-size: 1.6rem;">Demo App</div>
<div class="ml-4 text-lg font-semibold" style="font-size: 1.6rem;">Awesome App 🤩</div>
</div>

<div class="mt-8 bg-white dark:bg-gray-800 overflow-hidden shadow sm:rounded-lg">
Expand Down

0 comments on commit 0d49f6a

Please sign in to comment.