@extends('layout.master') @section('css') @stop @section('content')
@csrf

Edit Product

@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
Once you click on delete icon, Image will be deleted and it's not revertable
@if ($errors->has('product_name'))
{{ $errors->first('product_name') }}
@endif
@if ($errors->has('product_price'))
{{ $errors->first('product_price') }}
@endif
@if ($errors->has('link'))
{{ $errors->first('link') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@stop @section('script') @stop