27 lines
1.2 KiB
PHP
27 lines
1.2 KiB
PHP
<!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>
|