@extends('layout.app') @section('content')

Edit Karyawan {{ $karyawan->name }}

{!! Form::open(array('route' => ['karyawan.update', $karyawan->id], 'method' => 'PUT', 'role' => 'form', 'class' => 'form-horizontal', 'enctype' => 'multipart/form-data')) !!} {!! csrf_field() !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('tgl_lahir')) {{ $errors->first('tgl_lahir') }} @endif
@if ($errors->has('tgl_join')) {{ $errors->first('tgl_join') }} @endif
@if ($errors->has('alamat')) {{ $errors->first('alamat') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('kecamatan')) {{ $errors->first('kecamatan') }} @endif
@if ($errors->has('postal')) {{ $errors->first('postal') }} @endif
@if ($errors->has('biodata')) {{ $errors->first('biodata') }} @endif
@if ($errors->has('pendidikan')) {{ $errors->first('pendidikan') }} @endif
@if ($errors->has('keahlian')) {{ $errors->first('keahlian') }} @endif
Cancel
{!! Form::close() !!}
@endsection