initial commit
This commit is contained in:
commit
1e1aa7d461
215 changed files with 35140 additions and 0 deletions
11
resources/views/auth/login.blade.php
Normal file
11
resources/views/auth/login.blade.php
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<x-layout name="auth">
|
||||
|
||||
<h1 class="text-gray-500 text-3xl text-center mb-4">Login</h1>
|
||||
|
||||
<x-form action="{{ route('auth.login.store') }}">
|
||||
<x-input name="username" placeholder="{{ __('Username') }}" class="mb-2"/>
|
||||
<x-input-password placeholder="{{ __('Password') }}" class="mb-2" />
|
||||
<x-button element="input" type="submit" name="submit" value="Login" class="w-full" />
|
||||
</x-form>
|
||||
|
||||
</x-layout>
|
||||
Reference in a new issue