@extends('portal.ninja2020.layout.clean_setup') @section('meta_title', ctrans('texts.setup')) @section('body')
@csrf

Invoice Ninja Setup

{{ ctrans('texts.if_you_need_help') }} {{ ctrans('texts.support_forum') }}

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session()->has('setup_error'))
{{ ctrans('texts.error_title') }}:
{{ session('setup_error') }}
@endif @if($check['system_health'] === false) @include('setup._issues') @else @if(isset($check['npm_status']) && !$check['npm_status'])

NPM Version => {{$check['npm_status']}}

@endif @if(isset($check['node_status']) && !$check['node_status'])

Node Version => {{$check['node_status']}}

@endif @include('setup._application') @include('setup._database') @include('setup._mail') @include('setup._account')

{{ ctrans('texts.setup_steps_notice') }}

@endif
@endsection @push('footer') @vite('resources/js/setup/setup.js') @endpush