Skip to content

Commit

Permalink
add custom style
Browse files Browse the repository at this point in the history
  • Loading branch information
archytech99 committed Feb 10, 2021
1 parent 2a8d0f9 commit 49533b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function testCaptcha()
{
$form = '<form method="POST" action="">';
$form .= '<input type="hidden" name="_token" value="' . csrf_token() . '">';
$form .= '<p>' . captcha_image_html(['style'=>'border-radius: 15px;']) . '</p>';
$form .= '<p>' . captcha_image_html(['style'=>'border-radius: 15px; width: 192px;']) . '</p>';

if (request()->getMethod() == 'POST') {
$rules = ['captcha' => 'required|captcha'];
Expand Down

0 comments on commit 49533b8

Please sign in to comment.