@extends('layouts.app') @section('content')
Edit Product
Back
@if ($errors->any())
Whoops!
There were some problems with your input.
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf @method('PUT')
Name:
Detail:
{{ $product->detail }}
Submit
Tutorial by ItSolutionStuff.com
@endsection