Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. @extends('template')
  2. @section('main')
  3. <div id="karyawan">
  4.     <h2>Edit Karyawan</h2>
  5.     {!! Form::model($karyawan, ['method' => 'PATCH', 'action' =>
  6.     ['KaryawanController@update', $karyawan->id], 'files'=>true]) !!}
  7.  
  8. @include('chap8.form', ['submitButton' => 'Edit Karyawan'])
  9.  
  10.     {!! Form::close() !!}
  11. </div>
  12. @stop
  13. @section('footer')
  14.     @include('footer')
  15. @stop