@extends('layouts.app') @section('title', 'Home Page') @section('content')

🌐 Site Preview Tool

@csrf
@if($errors->any())
There were some problems:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(isset($previewUrl))
✅ Preview URL:
{{ $previewUrl }}
@endif @if(isset($response))

📄 Preview of {{ $domain }} ({{ $ip }})

{!! $response !!}
@endif
@endsection