@extends('portal.ninja2020.layout.clean') @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(!$check['npm_status'])

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

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

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

@endif @include('setup._application') @include('setup._database') @include('setup._mail') @include('setup._account')
{{ ctrans('texts.i_agree') }} {{ ctrans('texts.terms_of_service') }}
{{ ctrans('texts.i_agree') }} {{ ctrans('texts.privacy_policy') }}
@endif
@endsection @push('footer') @endpush