Advertisement
Guest User

creaaaaaaaaaaate

a guest
Nov 18th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.76 KB | None | 0 0
  1. @extends('layouts.app')
  2.  
  3. @section('content')
  4.     <h1>Creat Post</h1>
  5.     {!! Form::open(['action' => 'PostsController@store', 'method' => 'POST', 'enctype' => 'mutlipart/form-data']) !!}
  6.       <div class="form-group">
  7.             {{Form::label('title', 'Title')}}
  8.             {{Form::text('title', '', ['class' => 'form-control', 'placeholder' => 'Title'])}}
  9.         </div>
  10.         <div class="form-group">
  11.           {{Form::label('title', 'Title')}}
  12.           {{Form::textarea('body', '', ['class' => 'form-control', 'placeholder' => 'Body', 'rows' => '5'])}}
  13.       </div>
  14.       <div class="form-group">
  15.         {{Form::file('post_image')}}
  16.       </div>
  17.         {{Form::submit('Submit', ['class' => 'btn btn-primary'])}}
  18.     {!! Form::close() !!}
  19. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement