-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a14d9d3
commit 49a1277
Showing
21 changed files
with
501 additions
and
505 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
@extends('adminetic::admin.auth.layouts.app') | ||
@section('content') | ||
<div class="row"> | ||
<div class="col-12"> | ||
<div class="login-card"> | ||
<div class="row"> | ||
<div class="col-12"> | ||
<div class="login-card"> | ||
<div> | ||
<div> | ||
<div> | ||
<a class="logo text-start" href="{{ route('home') }}"> | ||
<img class="img-fluid for-light" | ||
src="{{ asset(setting('logo') ? 'storage/' . setting('logo') : 'adminetic/static/logo.png') }}" | ||
alt="Light Logo"> | ||
<img class="img-fluid for-dark" | ||
src="{{ asset(setting('dark_logo') ? 'storage/' . setting('dark_logo') : 'adminetic/static/logo_dark.png') }}" | ||
alt="Dark Logo"> | ||
</a> | ||
</div> | ||
<div class="login-main"> | ||
<form class="theme-form" method="POST" action="{{ route('password.email') }}"> | ||
@csrf | ||
<div class="form-group"> | ||
<label class="col-form-label">Email Address</label> | ||
<input class="form-control @error('email')shake animated @enderror" type="email" | ||
name="email" placeholder="Your Email" required> | ||
@error('email') | ||
<span class="text-danger" role="alert"> | ||
<strong>{{ $message }}</strong> | ||
</span> | ||
@enderror | ||
</div> | ||
<div class="form-group mb-0"> | ||
<button class="btn btn-primary btn-block w-100" type="submit">Recover Password</button> | ||
</div> | ||
@if (Route::has('register')) | ||
<p class="mt-4 mb-0">Don't have account?<a class="ms-2" | ||
href="{{ route('register') }}">Create Account</a> | ||
</p> | ||
@endif | ||
@if (Route::has('login')) | ||
<p class="mt-4 mb-0">Have account?<a class="ms-2" href="{{ route('login') }}">Login</a> | ||
</p> | ||
@endif | ||
</form> | ||
</div> | ||
<a class="logo text-start" href="{{ route('dashboard') }}"> | ||
<img class="img-fluid for-light" | ||
src="{{ asset(setting('logo') ? 'storage/' . setting('logo') : 'adminetic/static/logo.png') }}" | ||
alt="Light Logo"> | ||
<img class="img-fluid for-dark" | ||
src="{{ asset(setting('dark_logo') ? 'storage/' . setting('dark_logo') : 'adminetic/static/logo_dark.png') }}" | ||
alt="Dark Logo"> | ||
</a> | ||
</div> | ||
<div class="login-main"> | ||
<form class="theme-form" method="POST" action="{{ route('password.email') }}"> | ||
@csrf | ||
<div class="form-group"> | ||
<label class="col-form-label">Email Address</label> | ||
<input class="form-control @error('email')shake animated @enderror" type="email" | ||
name="email" placeholder="Your Email" required> | ||
@error('email') | ||
<span class="text-danger" role="alert"> | ||
<strong>{{ $message }}</strong> | ||
</span> | ||
@enderror | ||
</div> | ||
<div class="form-group mb-0"> | ||
<button class="btn btn-primary btn-block w-100" type="submit">Recover Password</button> | ||
</div> | ||
@if (Route::has('register')) | ||
<p class="mt-4 mb-0">Don't have account?<a class="ms-2" href="{{ route('register') }}">Create | ||
Account</a> | ||
</p> | ||
@endif | ||
@if (Route::has('login')) | ||
<p class="mt-4 mb-0">Have account?<a class="ms-2" href="{{ route('login') }}">Login</a> | ||
</p> | ||
@endif | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
@endsection | ||
</div> | ||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,70 @@ | ||
@extends('adminetic::admin.auth.layouts.app') | ||
@section('content') | ||
<div class="row"> | ||
<div class="col-12"> | ||
<div class="login-card"> | ||
<div class="row"> | ||
<div class="col-12"> | ||
<div class="login-card"> | ||
<div> | ||
<div> | ||
<div> | ||
<a class="logo text-start" href="{{ route('home') }}"> | ||
<img class="img-fluid for-light" | ||
src="{{ asset(setting('logo') ? 'storage/' . setting('logo') : 'adminetic/static/logo.png') }}" | ||
alt="Light Logo"> | ||
<img class="img-fluid for-dark" | ||
src="{{ asset(setting('dark_logo') ? 'storage/' . setting('dark_logo') : 'adminetic/static/logo_dark.png') }}" | ||
alt="Dark Logo"> | ||
</a> | ||
</div> | ||
<div class="login-main"> | ||
<form class="theme-form" method="POST" action="{{ route('password.update') }}"> | ||
<h4>Reset Your Password</h4> | ||
<div class="form-group"> | ||
<label class="col-form-label">Email Address</label> | ||
<input class="form-control @error('email')shake animated @enderror" type="email" | ||
name="email" placeholder="Your Email" required> | ||
@error('email') | ||
<span class="text-danger" role="alert"> | ||
<strong>{{ $message }}</strong> | ||
</span> | ||
@enderror | ||
</div> | ||
<div class="form-group"> | ||
<label class="col-form-label">Password</label> | ||
<div class="form-input position-relative"> | ||
<input class="form-control @error('password')shake animated @enderror" type="password" | ||
name="password" placeholder="*********" required> | ||
<div class="show-hide"><span class="show"> </span></div> | ||
</div> | ||
@error('password') | ||
<span class="text-danger" role="alert"> | ||
<strong>{{ $message }}</strong> | ||
</span> | ||
@enderror | ||
</div> | ||
<div class="form-group"> | ||
<label class="col-form-label">Confirm Password</label> | ||
<div class="form-input position-relative"> | ||
<input class="form-control @error('password_confirmation')shake animated @enderror" | ||
type="password" name="password_confirmation" placeholder="*********" required> | ||
<div class="show-hide"><span class="show"> </span></div> | ||
</div> | ||
@error('password_confirmation') | ||
<span class="text-danger" role="alert"> | ||
<strong>{{ $message }}</strong> | ||
</span> | ||
@enderror | ||
<a class="logo text-start" href="{{ route('dashboard') }}"> | ||
<img class="img-fluid for-light" | ||
src="{{ asset(setting('logo') ? 'storage/' . setting('logo') : 'adminetic/static/logo.png') }}" | ||
alt="Light Logo"> | ||
<img class="img-fluid for-dark" | ||
src="{{ asset(setting('dark_logo') ? 'storage/' . setting('dark_logo') : 'adminetic/static/logo_dark.png') }}" | ||
alt="Dark Logo"> | ||
</a> | ||
</div> | ||
<div class="login-main"> | ||
<form class="theme-form" method="POST" action="{{ route('password.update') }}"> | ||
<h4>Reset Your Password</h4> | ||
<div class="form-group"> | ||
<label class="col-form-label">Email Address</label> | ||
<input class="form-control @error('email')shake animated @enderror" type="email" | ||
name="email" placeholder="Your Email" required> | ||
@error('email') | ||
<span class="text-danger" role="alert"> | ||
<strong>{{ $message }}</strong> | ||
</span> | ||
@enderror | ||
</div> | ||
<div class="form-group"> | ||
<label class="col-form-label">Password</label> | ||
<div class="form-input position-relative"> | ||
<input class="form-control @error('password')shake animated @enderror" type="password" | ||
name="password" placeholder="*********" required> | ||
<div class="show-hide"><span class="show"> </span></div> | ||
</div> | ||
<div class="form-group mb-0"> | ||
<button class="btn btn-primary btn-block w-100" type="submit">Reset Password</button> | ||
@error('password') | ||
<span class="text-danger" role="alert"> | ||
<strong>{{ $message }}</strong> | ||
</span> | ||
@enderror | ||
</div> | ||
<div class="form-group"> | ||
<label class="col-form-label">Confirm Password</label> | ||
<div class="form-input position-relative"> | ||
<input class="form-control @error('password_confirmation')shake animated @enderror" | ||
type="password" name="password_confirmation" placeholder="*********" required> | ||
<div class="show-hide"><span class="show"> </span></div> | ||
</div> | ||
@if (Route::has('register')) | ||
<p class="mt-4 mb-0">Don't have account?<a class="ms-2" | ||
href="{{ route('register') }}">Create Account</a> | ||
</p> | ||
@endif | ||
</form> | ||
</div> | ||
@error('password_confirmation') | ||
<span class="text-danger" role="alert"> | ||
<strong>{{ $message }}</strong> | ||
</span> | ||
@enderror | ||
</div> | ||
<div class="form-group mb-0"> | ||
<button class="btn btn-primary btn-block w-100" type="submit">Reset Password</button> | ||
</div> | ||
@if (Route::has('register')) | ||
<p class="mt-4 mb-0">Don't have account?<a class="ms-2" href="{{ route('register') }}">Create | ||
Account</a> | ||
</p> | ||
@endif | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
@endsection | ||
</div> | ||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
@extends('adminetic::admin.layouts.app') | ||
|
||
@section('content') | ||
<div class="container-fluid"> | ||
<div class="page-title"> | ||
<div class="row"> | ||
<div class="col-6"> | ||
<h3>Dashboard</h3> | ||
</div> | ||
<div class="col-6"> | ||
<ol class="breadcrumb"> | ||
<li class="breadcrumb-item"><a href="index.html"> <i data-feather="home"></i></a> | ||
</li> | ||
<li class="breadcrumb-item">Dashboard</li> | ||
<li class="breadcrumb-item active">Default </li> | ||
</ol> | ||
</div> | ||
<div class="container-fluid"> | ||
<div class="page-title"> | ||
<div class="row"> | ||
<div class="col-6"> | ||
<h3>Dashboard</h3> | ||
</div> | ||
<div class="col-6"> | ||
<ol class="breadcrumb"> | ||
<li class="breadcrumb-item"><a href="{{route('dashboard')}}"> <i data-feather="home"></i></a> | ||
</li> | ||
<li class="breadcrumb-item">Dashboard</li> | ||
<li class="breadcrumb-item active">Default </li> | ||
</ol> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Container-fluid starts--> | ||
<div class="container-fluid"> | ||
<h1 class="text-center">Welcome To Dashboard</h1> | ||
</div> | ||
<!-- Container-fluid Ends--> | ||
</div> | ||
<!-- Container-fluid starts--> | ||
<div class="container-fluid"> | ||
<h1 class="text-center">Welcome To Dashboard</h1> | ||
</div> | ||
<!-- Container-fluid Ends--> | ||
@endsection | ||
|
||
@section('custom_js') | ||
@include('adminetic::admin.layouts.modules.dashboard.scripts') | ||
@endsection | ||
@include('adminetic::admin.layouts.modules.dashboard.scripts') | ||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,29 @@ | ||
<!-- latest jquery--> | ||
<script src="{{ asset('adminetic/assets/js/jquery-3.5.1.min.js') }}"></script> | ||
<!-- Bootstrap js--> | ||
<script src="{{ asset('adminetic/assets/js/bootstrap/bootstrap.bundle.min.js') }}"></script> | ||
<!-- feather icon js--> | ||
<script src="{{ asset('adminetic/assets/js/icons/feather-icon/feather.min.js') }}"></script> | ||
<script src="{{ asset('adminetic/assets/js/icons/feather-icon/feather-icon.js') }}"></script> | ||
<!-- Sidebar jquery--> | ||
<script src="{{ asset('adminetic/assets/js/config.js') }}"></script> | ||
{{-- Plugin Injection --}} | ||
@include('adminetic::admin.layouts.assets.plugin_scripts') | ||
<script src="{{ asset('adminetic/assets/js/sidebar-menu.js') }}"></script> | ||
{{-- End Plugin Injection --}} | ||
{{-- CUSTOM --}} | ||
<script src="{{ asset('adminetic/assets/custom/custom.js') }}"></script> | ||
{{-- Notifiable --}} | ||
@include('adminetic::admin.layouts.components.notify') | ||
{{-- CKEditor --}} | ||
@include('adminetic::admin.layouts.assets.ckeditor') | ||
{{-- Inline Custom --}} | ||
@yield('custom_js') | ||
<!-- Theme js--> | ||
<script src="{{ asset('adminetic/assets/js/script.js') }}"></script> | ||
@include('adminetic::admin.layouts.assets.customizer') | ||
{{-- Livewire --}} | ||
@livewireScripts | ||
@stack('livewire_third_party') | ||
<!-- latest jquery--> | ||
<script src="{{ asset('adminetic/assets/js/jquery-3.5.1.min.js') }}"></script> | ||
<!-- Bootstrap js--> | ||
<script src="{{ asset('adminetic/assets/js/bootstrap/bootstrap.bundle.min.js') }}"></script> | ||
<!-- feather icon js--> | ||
<script src="{{ asset('adminetic/assets/js/icons/feather-icon/feather.min.js') }}"></script> | ||
<script src="{{ asset('adminetic/assets/js/icons/feather-icon/feather-icon.js') }}"></script> | ||
<!-- Sidebar jquery--> | ||
<script src="{{ asset('adminetic/assets/js/config.js') }}"></script> | ||
{{-- Plugin Injection --}} | ||
@include('adminetic::admin.layouts.assets.plugin_scripts') | ||
<script src="{{ asset('adminetic/assets/js/sidebar-menu.js') }}"></script> | ||
{{-- End Plugin Injection --}} | ||
{{-- CUSTOM --}} | ||
<script src="{{ asset('adminetic/assets/custom/custom.js') }}"></script> | ||
{{-- Notifiable --}} | ||
@include('adminetic::admin.layouts.components.notify') | ||
{{-- CKEditor --}} | ||
@include('adminetic::admin.layouts.assets.ckeditor') | ||
{{-- Inline Custom --}} | ||
@yield('custom_js') | ||
<!-- Theme js--> | ||
<script src="{{ asset('adminetic/assets/js/script.js') }}"></script> | ||
@if(Route::is('dashboard') ) | ||
@include('adminetic::admin.layouts.assets.customizer') | ||
@endif | ||
{{-- Livewire --}} | ||
@livewireScripts | ||
@stack('livewire_third_party') |
Oops, something went wrong.