91 lines
4.9 KiB (Stored with Git LFS)
PHP
91 lines
4.9 KiB (Stored with Git LFS)
PHP
@extends('backend.layouts.layout')
|
|
|
|
@section('content')
|
|
|
|
<div class="h-100 bg-cover bg-center py-5 d-flex align-items-center" style="background-image: url({{ uploaded_asset(get_setting('delivery_boy_login_page_bg')) }})">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-6 col-xl-4 mx-auto">
|
|
<div class="card text-left">
|
|
<div class="card-body">
|
|
<div class="mb-5 text-center">
|
|
@if(get_setting('system_logo_black') != null)
|
|
<img src="{{ uploaded_asset(get_setting('system_logo_black')) }}" class="mw-100 mb-4" height="40">
|
|
@else
|
|
<img src="{{ static_asset('assets/img/logo.png') }}" class="mw-100 mb-4" height="40">
|
|
@endif
|
|
<h1 class="fs-20 fs-md-24 fw-700 text-primary">{{ translate('Welcome Back !')}}</h1>
|
|
<h5 class="fs-14 fw-400 text-dark">{{ translate('Login To Your Delivery Boy Account')}}</h5>
|
|
</div>
|
|
<form class="pad-hor" method="POST" role="form" action="{{ route('login') }}">
|
|
@csrf
|
|
<!-- Email or Phone -->
|
|
<div class="form-group">
|
|
<label for="email" class="fs-12 fw-500 text-secondary">{{ translate('Email') }}</label>
|
|
<input type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }} rounded-0" value="{{ old('email') }}" placeholder="{{ translate('johndoe@example.com') }}" name="email" id="email" autocomplete="off">
|
|
@if ($errors->has('email'))
|
|
<span class="invalid-feedback" role="alert">
|
|
<strong>{{ $errors->first('email') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
|
|
<!-- password -->
|
|
<div class="form-group">
|
|
<label for="password" class="fs-12 fw-500 text-secondary">{{ translate('Password') }}</label>
|
|
<input type="password" class="form-control rounded-0 {{ $errors->has('password') ? ' is-invalid' : '' }}" placeholder="{{ translate('Password')}}" name="password" id="password">
|
|
</div>
|
|
|
|
<div class="row mb-2">
|
|
<!-- Remember Me -->
|
|
<div class="col-6">
|
|
<label class="aiz-checkbox">
|
|
<input type="checkbox" name="remember" {{ old('remember') ? 'checked' : '' }}>
|
|
<span class="has-transition fs-12 fw-400 text-gray-dark hov-text-primary">{{ translate('Remember Me') }}</span>
|
|
<span class="aiz-square-check"></span>
|
|
</label>
|
|
</div>
|
|
<!-- Forgot password -->
|
|
<div class="col-6 text-right">
|
|
<a href="{{ route('password.request') }}" class="text-reset fs-12 fw-400 text-gray-dark hov-text-primary"><u>{{ translate('Forgot password?')}}</u></a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Submit Button -->
|
|
<div class="mb-4 mt-4">
|
|
<button type="submit" class="btn btn-primary btn-block fw-700 fs-14 rounded-4">{{ translate('Login') }}</button>
|
|
</div>
|
|
</form>
|
|
@if (env("DEMO_MODE") == "On")
|
|
<div class="mt-4">
|
|
<table class="table table-bordered">
|
|
<tbody>
|
|
<tr>
|
|
<td>deliveryboy@example.com</td>
|
|
<td>123456</td>
|
|
<td><button class="btn btn-info btn-xs" onclick="autoFill()">{{ translate('Copy') }}</button></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@endsection
|
|
|
|
@section('script')
|
|
<script type="text/javascript">
|
|
function autoFill(){
|
|
$('#email').val('deliveryboy@example.com');
|
|
$('#password').val('123456');
|
|
}
|
|
</script>
|
|
@endsection
|
|
|