Guest User

Codingan Laravel Upload Gambar (edit.blade.php)

a guest
May 27th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. @extends('template')
  2. @section('main')
  3. <div id="karyawan">
  4.   <h2>Edit</h2>
  5.   {!! Form::model($karyawan, ['method'=>'PATCH', 'action'=>['KaryawanController@update',$karyawan->id], 'files' => true]) !!}
  6.  
  7.   @include('chap8.form',['submitButton'=>'Edit Karyawan'])
  8.   {!! Form::close() !!}
  9. </div>
  10. @stop
  11. @section('footer')
  12. @include('footer')
  13. @stop
Advertisement
Add Comment
Please, Sign In to add comment