@extends('layout') @section('title', 'Update Produk') @section('content')
Update Produk
@csrf @method('PUT')
@if ($errors->has('nama'))

{{ucfirst($errors->first('nama'))}}

@endif
@if ($errors->has('deskripsi'))

{{ucfirst($errors->first('deskripsi'))}}

@endif
@if ($errors->has('harga'))

{{ucfirst($errors->first('harga'))}}

@endif
@if ($errors->has('status'))

{{ucfirst($errors->first('status'))}}

@endif
* Kosongkan jika tidak mengupload
Kembali
@endsection