@extends('layouts.app') @section('pagetitle') Request Key @endsection @section('content')

Get your personal key

@if(Session::has('message'))
{{ Session::get('message') }}
@endif @if($errors->any())
There were errors. Please check entered data and submit again.
@endif
@csrf
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!}
@if(isset($data))
Only for domain:
{{ $data['domain'] }}
User ID:
{{ $data['user_id'] }}
Key:
{{ $data['user_key'] }}

Follow the API instructions to start using this tool.

@endif @endsection