Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <html>
  2.     <head>
  3.         <title>Laravel</title>     
  4.         <link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
  5.         <style>
  6.             body {
  7.                 margin: 0;
  8.                 padding: 0;
  9.                 width: 100%;
  10.                 height: 100%;
  11.                 color: #B0BEC5;
  12.                 display: table;
  13.                 font-weight: 100;
  14.                 font-family: 'Lato';
  15.             }
  16.             .container {
  17.                 text-align: center;
  18.                 display: table-cell;
  19.                 vertical-align: middle;
  20.             }
  21.             .content {
  22.                 text-align: center;
  23.                 display: inline-block;
  24.             }
  25.             .title {
  26.                 font-size: 96px;
  27.                 margin-bottom: 40px;
  28.             }
  29.             .quote {
  30.                 font-size: 24px;
  31.             }
  32.         </style>
  33.     </head>
  34.     <body>
  35.         <div class="container">
  36.             <div class="content">
  37.                 <h1>File Upload</h1>
  38.                 <form action="{{ url('upload') }}" enctype="multipart/form-data" method="POST">
  39.                 <label>Pilih Gambar Upload</label>
  40.                     <input type="file" name="file" id="file"/>
  41.                     <input type="submit" value="Upload" name="submit"/>
  42.                     <input type="hidden" name="_token" value="{{ csrf_token() }}">
  43.                 </form>
  44.             </div>
  45.         </div>
  46.     </body>
  47. </html>