Advertisement
Firdaus_Shinoda

edit.blade.php

May 15th, 2017
1,899
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 Karyawan</h2>
  5.   {!! Form::model($karyawan,['method'=>'PATCH','action'=>['KaryawanController@update',$karyawan->id],'files'=>true]) !!}
  6.   @include('chaps8.form',['submitButton'=>'Edit Karyawan'])
  7.   {!! Form::close() !!}
  8. </div>
  9. @stop
  10. @section('footer')
  11.   @include('footer')
  12. @stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement