@extends('layouts.librenmsv1') @section('title', __('Add SSL Certificate')) @section('content')
@csrf @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($devices->isEmpty())
{{ __('You have no devices you can assign this certificate to.') }}
@else

{{ __('The certificate must be linked to a device.') }}

@endif
{{ __('Cancel') }}
@endsection