@extends('installer.app') @section('content') @php $enabled=true; function generateRandomCode() { $characters = '0123456789abcdefghijklmnopqrstuvwxyz'; $code = ''; for ($i = 0; $i < 36; $i++) { if (in_array($i, [8, 13, 18, 23])) { $code .= '-'; } else { $code .= $characters[rand(0, strlen($characters) - 1)]; } } return $code; } $randomCode = generateRandomCode(); @endphp

🔑 {{ __('Lets verify the purchase key') }}

@if(Session::has('purchase-key-error')) @endif
@csrf

@endsection