epung

edit.blade.php

May 27th, 2017
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 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.     {{--menambahkan files agar kita dapat upload file--}}
  8.  
  9.     @include('chapter8.form', ['submitButton' => 'Edit Karyawan'])
  10.  
  11.     {!! Form::close() !!}
  12. </div>
  13. @stop
  14. @section('footer')
  15.     @include('footer')
  16. @stop
Advertisement
Add Comment
Please, Sign In to add comment