@extends('portal.ninja2020.layout.clean') @section('meta_title', ctrans('texts.setup')) @push('head') @endpush @section('body')
@csrf

Invoice Ninja Setup

If you need help you can either post to our support forum or email us at contact@invoiceninja.com.

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session()->has('setup_error'))
Oops, something wen't wrong:
{{ session('setup_error') }}
@endif @if($check['system_health'] === false) @include('setup._issues') @else @include('setup._application') @include('setup._database') @include('setup._mail') @include('setup._account')
@endif
@endsection @push('footer') @endpush