Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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', 'files'=> true]) !!}
  9.  
  10.     @include('chap8.form', ['submitButton' => 'Tambah Karyawan'])
  11.  
  12.     {!! Form::close() !!}
  13. </div>
  14. @stop
  15. @section('footer')
  16.     @include('footer')
  17. @stop