You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.5 KiB

2 years ago
2 years ago
2 years ago
2 years ago
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Laravel</title>
  7. <!-- Fonts -->
  8. <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
  9. <!-- Styles -->
  10. </head>
  11. <body class="antialiased">
  12. <form action="fuck" method="post" enctype="multipart/form-data">
  13. @csrf
  14. <input type="file" name="file">
  15. <input type="text" name="" placeholder=""><br>
  16. <input type="text" name="" placeholder="ttt"><br>
  17. <input type="text" name="" placeholder="ttt"><br>
  18. <input type="text" name="" placeholder="ttt"><br>
  19. <input type="text" name="" placeholder="ttt"><br>
  20. <input type="text" name="" placeholder="ttt"><br>
  21. <input type="text" name="" placeholder="ttt"><br>
  22. <input type="text" name="" placeholder="ttt"><br>
  23. <input type="text" name="" placeholder="ttt"><br>
  24. <input type="text" name="" placeholder="ttt"><br>
  25. <input type="text" name="" placeholder="ttt"><br>
  26. <input type="submit" value="s">
  27. </form>
  28. @dump($errors->any())
  29. @if($errors->any())
  30. <div class="alert alert-danger">
  31. <p><strong>Opps Something went wrong</strong></p>
  32. <ul>
  33. @foreach ($errors->all() as $error)
  34. <li>{{ $error }}</li>
  35. @endforeach
  36. </ul>
  37. </div>
  38. @endif
  39. </body>
  40. </html>