123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Google Cloud Vision OCR</title>
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
- </head>
- <body>
- <div class="container">
- <div class="row mt-3">
- <form method="post" action="{{ route('submit') }}" enctype="multipart/form-data">
- @csrf
- <div class="mb-3">
- <label for="file" class="form-label">Select file:</label>
- <input type="file" id="file" name="file" class="form-control">
- </div>
- <button type="submit" class="btn btn btn-primary">Submit</button>
- </form>
- </div>
- </div>
- </body>
- </html>
|