fadlyshafa

Untitled

Aug 10th, 2019
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.91 KB | None | 0 0
  1. @extends('admin.layouts.master')
  2.  
  3. @section('content')
  4.  
  5. <div class="col-md-8 col-md-offset-2">
  6.     <div class="box">
  7.         <div class="box-body">
  8.            
  9.             <form role="form" enctype="multipart/form-data" action="{{ url('admin/iklan') }}" method="POST">
  10.                 {{ csrf_field() }}
  11.                 <div class="box-body">
  12.                     <div class="form-group">
  13.                         <label for="exampleInputEmail1">Url</label>
  14.                         <input type="text" name="url" class="form-control" id="exampleInputEmail1" placeholder="Url">
  15.                     </div>
  16.                     <div class="form-group">
  17.                         <label for="exampleInputFile">File input</label>
  18.                         <input type="file" name="image" id="exampleInputFile">
  19.  
  20.                         <p class="help-block">Example block-level help text here.</p>
  21.                     </div>
  22.                 </div>
  23.                 <!-- /.box-body -->
  24.  
  25.                 <div class="box-footer">
  26.                     <button type="submit" class="btn btn-primary">Submit</button>
  27.                 </div>
  28.             </form>
  29.  
  30.         </div>
  31.     </div>
  32. </div>
  33.  
  34. @endsection
Advertisement
Add Comment
Please, Sign In to add comment