66 lines
3.9 KiB
PHP
66 lines
3.9 KiB
PHP
@section('meta_title', __('Sign in to our platform'))
|
|
<x-auth-layout>
|
|
<div class="row justify-content-center form-bg-image" data-background-lg="{{ Vite::asset('resources/volt/images/illustrations/signin.svg') }}">
|
|
<div class="col-12 d-flex align-items-center justify-content-center">
|
|
<div class="bg-white shadow border-0 rounded border-light p-4 p-lg-5 w-100 fmxw-500">
|
|
<div class="text-center text-md-center mb-4 mt-md-0">
|
|
<h1 class="mb-0 h3">{{ __('Sign in to our platform') }}</h1>
|
|
</div>
|
|
@if ($errors->any())
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
<form action="{{ route('authorization') }}" class="mt-4" method="post">
|
|
@csrf
|
|
<!-- Form -->
|
|
<div class="form-group mb-4">
|
|
<label for="email">{{ __('Your Email') }}</label>
|
|
<div class="input-group">
|
|
<span class="input-group-text" id="basic-addon1">
|
|
<svg class="icon icon-xs text-gray-600" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884z"></path><path d="M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z"></path></svg>
|
|
</span>
|
|
<input type="email" name="email" class="form-control" placeholder="example@company.com" id="email" autofocus required>
|
|
</div>
|
|
</div>
|
|
<!-- End of Form -->
|
|
<div class="form-group">
|
|
<!-- Form -->
|
|
<div class="form-group mb-4">
|
|
<label for="password">{{ __('Your Password') }}</label>
|
|
<div class="input-group">
|
|
<span class="input-group-text" id="basic-addon2">
|
|
<svg class="icon icon-xs text-gray-600" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z" clip-rule="evenodd"></path></svg>
|
|
</span>
|
|
<input type="password" name="password" placeholder="Password" class="form-control" id="password" autocomplete="off" required>
|
|
</div>
|
|
</div>
|
|
<!-- End of Form -->
|
|
<div class="d-flex justify-content-between align-items-top mb-4">
|
|
<div class="form-check">
|
|
<input name="remember" type="hidden" value="0">
|
|
<input class="form-check-input" name="remember" type="checkbox" value="1" id="remember">
|
|
<label class="form-check-label mb-0" for="remember">
|
|
{{ __('Remember me') }}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
@if($captcha)
|
|
<div class="form-group mb-4">
|
|
@captcha
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<div class="d-grid">
|
|
<button type="submit" class="btn btn-gray-800">{{ __('Sign in') }}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</x-auth-layout>
|