@extends('layouts.app') @section('title', isset($product) ? 'Edit Product' : 'Add Product') @section('content')

{{ isset($product) ? 'Edit Product' : 'Add Product' }}

@csrf @if(isset($product)) @method('PUT') @endif
Cancel
@endsection