Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. @extends('layouts.app')
  2.  
  3. @section('content')
  4. <h1 class="text-center">Create post</h1>
  5. {{ Form::open(['action' => 'PostsController@store', 'method' => 'POST']) }}
  6. <div class="form-group">
  7. {{Form::label('title','Title')}}
  8. {{Form::text('title','',['class' => 'form-control', 'placeholder' => 'Title of your blog post'] )}}
  9. </div>
  10. <div class="form-group">
  11. {{Form::label('body')}}
  12. {{Form::textarea('body','',['class' => 'form-control', 'placeholder' => 'Your text goes here', 'id' => 'article-ckeditor'] )}}
  13. </div>
  14. {{Form::submit('Submit', ['class' => 'btn btn-primary'])}}
  15. {{ Form::close() }}
  16. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement