@extends('layout') @section('title', 'Tambah Produk') @section('content')
@if($success = Session::get('success')) @elseif($error = Session::get('error')) @endif
Tambah Produk
@csrf
@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
@if ($errors->has('file'))

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

@endif
Kembali
@endsection