Advertisement
Guest User

create.blade.php

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