Advertisement
sandytesar

create.blade.php

May 21st, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. @extends('template')
  2. @section('main')
  3. <div id="karyawan">
  4.     <h2>Tambah Karyawan</h2>
  5.  
  6.     {!! Form::open(['url'=>'karyawan']) !!}
  7.  
  8.     @include('chap8.form', ['submitButton'=> 'Tambah Karyawan'])
  9.  
  10.     {!! Form::close() !!}
  11. </div>
  12. @stop
  13. @section('footer')
  14.     @include('footer')
  15. @stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement