classify admin

This commit is contained in:
Husanjonazamov
2026-02-24 12:52:01 +05:00
commit e0f1989655
769 changed files with 1263008 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>Installation - {{ config('app.name', 'Laravel') }}</title>
<link rel="shortcut icon" href="{{ config('installer.icon') }}">
<link href="{{ asset('vendor/installer/styles.css') }}" rel="stylesheet">
</head>
<body class="min-h-screen h-full w-full bg-cover bg-no-repeat bg-center flex" style="background-image: url('{{ config('installer.background') }}');">
<div class="py-12 sm:px-12 w-full max-w-5xl m-auto">
<div class="w-full bg-white shadow sm:rounded-lg">
<div class="px-4 py-8 border-b border-gray-200 sm:px-6">
<div class="flex justify-center items-center">
<img alt="App logo" class="h-12" src="{{ config('installer.icon') }}">
<h2 class="pl-6 uppercase font-medium text-2xl text-gray-800">{{ config('app.name', 'Laravel') }} Installation</h2>
</div>
</div>
<div class="px-4 py-5 sm:px-6 w-full">
@yield('step')
</div>
</div>
</div>
</body>
</html>