Files
svoydom/resources/views/auth/login.blade.php
2023-05-17 09:57:20 +03:00

54 lines
3.1 KiB
PHP
Executable File

@extends('layout.master2')
@section('content')
<div class="page-content d-flex align-items-center justify-content-center">
<div class="row w-100 mx-0 auth-page">
<div class="col-md-8 col-xl-6 mx-auto">
<div class="card">
<div class="row">
<div class="col-md-12 ps-md-0">
<div class="auth-form-wrapper px-4 py-5">
<a href="#" class="noble-ui-logo d-block mb-2">Noble<span>UI</span></a>
<h5 class="text-muted fw-normal mb-4">Welcome back! Log in to your account.</h5>
<form method="POST" action="{{ route('login') }}" class="forms-sample">
@csrf
<div class="mb-3">
<label for="userEmail" class="form-label">{{ __('Email Address') }}</label>
<input name="email" id="userEmail" type="email" placeholder="Email" class="form-control @error('email') is-invalid @enderror" value="{{ old('email') }}" required autocomplete="email" autofocus>
@error('email')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<div class="mb-3">
<label for="userPassword" class="form-label">{{ __('Password') }}</label>
<input name="password" id="userPassword" type="password" placeholder="Password" class="form-control @error('password') is-invalid @enderror" required autocomplete="current-password">
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<div class="form-check mb-3">
<input class="form-check-input" type="checkbox" name="remember" id="authCheck" {{ old('remember') ? 'checked' : '' }}>
<label class="form-check-label" for="authCheck">
{{ __('Remember Me') }}
</label>
</div>
<div>
<button type="submit" class="btn btn-primary me-2 mb-2 mb-md-0">{{ __('Login') }}</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
@endsection