Advertisement
junafandi

view

May 20th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. @extends('layout.master')
  2.  
  3. @section('content')
  4.     <h1>halaman edit </h1>
  5.  
  6.     <hr>
  7.  
  8.     <form action="/blog/{{$tab->id}}" method="post">
  9.     <input type="hidden" name="_method" value="PUT">
  10.  
  11.     <input type="text" name="judul" value="{{ $tab->judul }} "> <br>
  12.     <textarea name="isi" rows="8" cols="40"> {{ $tab->isi }} </textarea> <br>
  13.     <button type="submit" name="submit"> edit </button>
  14.     {{ csrf_field() }}
  15.  
  16.     </form>
  17.    
  18. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement