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

Edit Perolehan Inventaris Pustaka

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

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