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

Add Products

@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
@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