Guest User

Untitled

a guest
Mar 27th, 2017
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. @extends('layouts.master')
  2.  
  3.  
  4. @section ('content')
  5.  
  6. <h1>Publish a Post</h1>
  7. <hr>
  8. <form method="POST" action="/posts">
  9.     {{ csrf_field() }}
  10.     <div class="form-group">
  11.     <label for="title">Title</label>
  12.     <input type="text" class="form-control" id="title" name="title">
  13.   </div>
  14.   <div class="form-group">
  15.     <label for="body">Body</label>
  16.     <textarea type="text" class="form-control" id="body" name="body" ></textarea>
  17.   </div>
  18.   <button type="submit" class="btn btn-primary">Publish</button>
  19. </form>
  20.  
  21. @endsection
Advertisement
Add Comment
Please, Sign In to add comment