@extends('admin.layout.app') @section('content')
{{-- Card --}}

Edit Master Product

@csrf @method('PUT') {{-- Name --}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{-- Current Image --}} @if($product->image)
{{ $product->name }}
@endif {{-- Image --}}
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
Single image, recommended size: 500x500px. Max 2MB. Only jpg, png, jpeg allowed.
{{-- Status --}}
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
{{-- Submit --}}
{{-- /Card --}}
@endsection