1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta httpd-equiv="X-UA-Compatible" content="ie=edge">
- <title> Post </title>
- <link href="https://fonts.googleapis.com/css?family=Montserrat:700&display=swap" rel="stylesheet">
- </head>
- <body>
- <h1>Create Post</h1>
- {{$errors}}
- @if ($errors->any())
- <div class="alert alert-danger">
- <ul>
- @foreach ($errors->all() as $error)
- <li>{{ $error }}</li>
- @endforeach
- </ul>
- </div>
- @endif
- </body>
- </html>
|