fialutfiatunnisa

edit.blade.php

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