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

Edit Form Jenis Koleksi

{{ Form::open(['route' => [ 'petugas.jenis_koleksi_field.update',$data->id], 'method' => 'PUT', 'enctype'=>"multipart/form-data" ]) }} {{ Form::hidden('id',$data->id) }}
{{ Form::text('nama_field', $data->nama_field, [ 'id'=>"nama_field" , 'class' => 'form-control', 'placeholder' => '...' ]) }} @error('nama_field') {{ $message }} @enderror
@if($data->active < 2)
@error('active') {{ $message }} @enderror
@endif
{{ Form::close() }}
@endsection