71 lines
3.5 KiB
PHP
71 lines
3.5 KiB
PHP
@extends('installer::install')
|
|
|
|
@section('step')
|
|
@if($errors->any())
|
|
@foreach($errors->all() as $error)
|
|
<div class="bg-red-100 border-l-4 border-red-500 p-4 mb-3">
|
|
<div class="flex">
|
|
<div class="flex-shrink-0">
|
|
<svg class="h-5 w-5 text-red-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
|
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7 4a1 1 0 11-2 0 1 1 0 012 0zm-1-9a1 1 0 00-1 1v4a1 1 0 102 0V6a1 1 0 00-1-1z" clip-rule="evenodd" />
|
|
</svg>
|
|
</div>
|
|
<div class="ml-3">
|
|
<p class="text-sm leading-5 text-red-700">
|
|
{!! $error !!}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
@else
|
|
<div class="bg-green-100 border-l-4 border-green-500 p-4 mb-3">
|
|
<div class="flex">
|
|
<div class="flex-shrink-0">
|
|
<svg class="h-5 w-5 text-green-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
|
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
|
|
</svg>
|
|
</div>
|
|
<div class="ml-3">
|
|
<p class="text-sm leading-5 text-green-700">
|
|
Migrations loaded successfully
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
<p class="pb-3 text-gray-800">The encryption keys of the application and the api connection must be generated.</p>
|
|
<p class="pb-3 text-gray-800">The storage link will also be generated.</p>
|
|
<p class="pb-3 text-gray-800">Enter the base url of the application.</p>
|
|
<form method="post" action="{{ route('install.keys') }}">
|
|
@csrf
|
|
<div class="mb-3">
|
|
<x-installer::label for="app_url" :required="true">App url</x-installer::label>
|
|
<x-installer::input
|
|
id="app_url"
|
|
name="app_url"
|
|
type="url"
|
|
value="{{ old('app_url', url('/')) }}"
|
|
:required="true"
|
|
/>
|
|
</div>
|
|
<div class="flex justify-end">
|
|
@if($errors->any())
|
|
<x-installer::button type="submit" color="red">
|
|
Try again
|
|
<svg class="fill-current w-5 h-5 ml-3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
|
<path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd" />
|
|
</svg>
|
|
</x-installer::button>
|
|
@else
|
|
<x-installer::button type="submit">
|
|
Next step
|
|
<svg class="fill-current w-5 h-5 ml-3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
|
<path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd" />
|
|
</svg>
|
|
</x-installer::button>
|
|
@endif
|
|
</div>
|
|
</form>
|
|
@endsection
|