Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @extends('template')
- @section('main')
- <div id="karyawan">
- <h2>Edit Karyawan</h2>
- {!! Form::model($karyawan, ['method' => 'PATCH','action' => ['KaryawanController@update', $karyawan->id], 'files' => true]) !!}
- {{--menambahkan files agar kita dapat upload file--}}
- @include('chapter8.form', ['submitButton' => 'Edit Karyawan'])
- {!! Form::close() !!}
- </div>
- @stop
- @section('footer')
- @include('footer')
- @stop
Advertisement
Add Comment
Please, Sign In to add comment