@extends('petugas.layouts.layout_dashboard') @section("title") Edit @endsection @section("breadcrumb") @endsection @section('footer-scripts') @include('petugas.components.notification') @endsection @section("content")
edit

Edit Pekerjaan

{{ Form::open(['route' => ['petugas.pekerjaan.update', $data_anggota_pekerjaan->id],'method'=>'PUT','enctype'=>"multipart/form-data"]) }} {{ Form::hidden('id',$data_anggota_pekerjaan->id) }}
{{ Form::text('kode_pekerjaan', $data_anggota_pekerjaan->kode_pekerjaan, [ 'id'=>"kode_pekerjaan" , 'class' => 'form-control', 'placeholder' => '...' ]) }} @error('kode_pekerjaan') {{ $message }} @enderror
{{ Form::text('label', $data_anggota_pekerjaan->label, [ 'id'=>"label" , 'class' => 'form-control', 'placeholder' => '...' ]) }} @error('label') {{ $message }} @enderror

{{ Form::close() }}
@endsection