@extends('layouts.app') @section('title', 'Product') @section('content')

{{ $product->exists ? 'Edit' : 'New' }} Product

@csrf @if($product->exists) @method('PUT') @endif
@if($product->image_path)@endif
@endsection