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

Edit Bahasa Pustaka

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

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