first upload all files

This commit is contained in:
NW
2023-06-11 13:14:03 +01:00
parent f14dbc52b5
commit c08b36d1b6
1705 changed files with 106852 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<base href="{{ url('/') }}">
<meta charset="UTF-8">
<title>
@yield('title') - FleetCart
</title>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:600|Roboto:400,500" rel="stylesheet">
@foreach ($assets->allCss() as $css)
<link media="all" type="text/css" rel="stylesheet" href="{{ v($css) }}">
@endforeach
@include('admin::partials.globals')
</head>
<body class="clearfix">
<div class="login-page">
@include('admin::partials.notification')
@yield('content')
</div>
@foreach ($assets->allJs() as $js)
<script src="{{ v($js) }}"></script>
@endforeach
</body>
</html>

View File

@@ -0,0 +1,62 @@
@extends('user::admin.auth.layout')
@section('title', trans('user::auth.login'))
@section('content')
<div class="login-wrapper">
<div class="bg-blue">
<div class="reflection"></div>
</div>
<div class="form-inner clearfix">
<h3 class="text-center">{{ setting('store_name') }}</h3>
<form method="POST" action="{{ route('admin.login.post') }}">
{{ csrf_field() }}
<div class="form-group">
<label for="email">{{ trans('user::auth.email') }}<span>*</span></label>
<input type="text" name="email" value="{{ old('email') }}" class="form-control" id="email"
placeholder="{{ trans('user::attributes.users.email') }}" autofocus>
<div class="input-icon">
<i class="fa fa-envelope-o" aria-hidden="true"></i>
</div>
{!! $errors->first('email', '<span class="help-block text-red">:message</span>') !!}
</div>
<div class="form-group">
<label for="password">{{ trans('user::auth.password') }}<span>*</span></label>
<input type="password" class="form-control" name="password"
placeholder="{{ trans('user::attributes.users.password') }}">
<div class="input-icon">
<i class="fa fa-lock" aria-hidden="true"></i>
</div>
{!! $errors->first('password', '<span class="help-block text-red">:message</span>') !!}
</div>
<button type="submit" class="btn btn-primary" data-loading>
{{ trans('user::auth.login') }}
</button>
<div class="clearfix"></div>
<div class="checkbox pull-left">
<input type="hidden" name="remember_me" value="0">
<input type="checkbox" name="remember_me" value="1" id="remember-me">
<label for="remember-me">{{ trans('user::attributes.auth.remember_me') }}</label>
</div>
<a href="{{ route('admin.reset') }}" class="text-center pull-right">
{{ trans('user::auth.forgot_password') }}
</a>
</form>
</div>
</div>
@endsection

View File

@@ -0,0 +1,36 @@
@extends('user::admin.auth.layout')
@section('title', trans('user::auth.reset_password'))
@section('content')
<div class="login-wrapper">
<div class="bg-blue">
<div class="reflection"></div>
</div>
<div class="form-inner reset-password clearfix">
<h3 class="text-center">{{ trans('user::auth.reset_password') }}</h3>
<p class="text-center">{{ trans('user::auth.enter_email') }}</p>
<form method="POST" action="{{ route('admin.reset.post') }}">
{{ csrf_field() }}
<div class="form-group">
<input type="text" name="email" value="{{ old('email') }}" class="form-control" placeholder="{{ trans('user::attributes.users.email') }}" autofocus>
<div class="input-icon">
<i class="fa fa-envelope-o" aria-hidden="true"></i>
</div>
{!! $errors->first('email', '<span class="help-block text-red">:message</span>') !!}
</div>
<button type="submit" class="btn btn-primary" data-loading>
{{ trans('user::auth.reset_password') }}
</button>
</form>
<a class="text-center" href="{{ route('admin.login') }}">{{ trans('user::auth.i_remembered_my_password') }}</a>
</div>
</div>
@endsection

View File

@@ -0,0 +1,43 @@
@extends('user::admin.auth.layout')
@section('title', trans('user::auth.reset_password'))
@section('content')
<div class="login-wrapper">
<div class="bg-blue">
<div class="reflection"></div>
</div>
<div class="form-inner reset-password clearfix">
<h3 class="text-center">{{ trans('user::auth.reset_password') }}</h3>
<form method="POST" class="login-form clearfix">
{{ csrf_field() }}
<div class="form-group">
<input type="password" class="form-control" name="new_password" placeholder="{{ trans('user::attributes.users.new_password') }}" autofocus>
<div class="input-icon">
<i class="fa fa-lock"></i>
</div>
{!! $errors->first('new_password', '<span class="help-block text-red">:message</span>') !!}
</div>
<div class="form-group">
<input type="password" class="form-control" name="new_password_confirmation" placeholder="{{ trans('user::attributes.users.confirm_new_password') }}">
<div class="input-icon">
<i class="fa fa-lock"></i>
</div>
{!! $errors->first('new_password_confirmation', '<span class="help-block text-red">:message</span>') !!}
</div>
<button class="btn btn-primary" type="submit" data-loading>
{{ trans('user::auth.reset_password') }}
</button>
</form>
</div>
</div>
@endsection