@section('title', $title) @section('description', $description) @extends('layout.app') @section('content')
Product Add
@if (session('success'))
{{ session('success') }}
@endif
@csrf
@foreach ($profiles as $profile) @endforeach @if ($errors->has('product_name'))
{{ $errors->first('product_name') }}
@endif
@if ($errors->has('product_cost'))
{{ $errors->first('product_cost') }}
@endif
@if(!empty($holders) && count($holders) > 0) @foreach ($holders as $holder) @endforeach @endif @if ($errors->has('account_holder'))
{{ $errors->first('account_holder') }}
@endif
@endsection