mega-commit: migrations, controllers, models, etc.
This commit is contained in:
parent
9732135e90
commit
2c6745e812
70 changed files with 2124 additions and 400 deletions
|
@ -1,17 +1,63 @@
|
|||
@extends('layout')
|
||||
@extends('main.layout')
|
||||
|
||||
@section('head')
|
||||
@push('head')
|
||||
<link rel="stylesheet" href="{{ asset('css/auth.css') }}">
|
||||
@endsection
|
||||
@endpush
|
||||
|
||||
@section('content')
|
||||
<h2>{{ __('Login') }}</h2>
|
||||
|
||||
<div class="form">
|
||||
<form method="POST" action="{{ route('login') }}">
|
||||
@csrf
|
||||
<div class="item">
|
||||
<label for="email">{{ __('E-Mail Address') }}</label><br/>
|
||||
<input type="email" name="email" id="email" value="{{ old('email') }}" required autocomplete="email"
|
||||
autofocus>
|
||||
<br/>
|
||||
|
||||
|
||||
@error('email')
|
||||
<span style="color: red">{{ $message }}</span>
|
||||
<br/>
|
||||
@enderror
|
||||
|
||||
</div>
|
||||
|
||||
<div class="item">
|
||||
<label for="password">{{ __('Password') }}</label><br/>
|
||||
<input type="password" name="password" id="password" required autocomplete="current-password">
|
||||
<br/>
|
||||
|
||||
@error('password')
|
||||
<span style="color: red">{{ $message }}</span>
|
||||
<br/>
|
||||
@enderror
|
||||
|
||||
</div>
|
||||
|
||||
<input type="checkbox" name="remember" id="remember" {{ old('remember') ? 'checked' : '' }}>
|
||||
<label for="remember">Remember me</label>
|
||||
<br/>
|
||||
|
||||
|
||||
<button type="submit">Submit</button>
|
||||
|
||||
</form>
|
||||
|
||||
<br/>
|
||||
|
||||
<div class="spread-h">
|
||||
@if (Route::has('password.request'))
|
||||
<a href="{{ route('password.request') }}">
|
||||
{{ __('Forgot Your Password?') }}
|
||||
</a>
|
||||
@endif
|
||||
|
||||
@if (Route::has('register'))
|
||||
<a href="{{ route('register') }}">
|
||||
{{ __('Register') }}
|
||||
</a>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue