@section('title', $title) @section('description', $description) @extends('layout.app') @section('content')
Product Add
@if (session('success'))
{{ session('success') }}
@endif
@csrf
@if ($errors->has('product_name'))
{{ $errors->first('product_name') }}
@endif
@if ($errors->has('product_cost'))
{{ $errors->first('product_cost') }}
@endif
@if ($errors->has('account_holder'))
{{ $errors->first('account_holder') }}
@endif
Existing File Details
@endsection