@extends('layouts.app') @section('content')

Certificate Management

@if($caReady) @endif
@if(!$caReady)

Setup Required

Root CA and Intermediate CA have not been initialized in the database yet.

@if(Auth::user()->isAdmin())
@csrf
@else
Action Required: Please contact your administrator to initialize the Root CA.
@endif
@endif

SSL Certificates List

Show entries
@include('pages.certificate.partials.table')
@if($caReady)

Download Root CA Certificates

These are the authority certificates used to sign your SSLs. Install them on your machine/browser to trust your generated certificates.

@endif @include('pages.certificate.partials.view-modal')
@include('pages.certificate.partials.create-modal') @endsection