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

Edit Jurusan Anggota

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

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