@extends('admin.layouts.layouts') @section('title', 'Create | Product') @section('content')
{!! Form::open([ 'route' => 'product.store', 'method' => 'POST', 'id' => 'validate_form_add_product', 'class' => 'forms-sample', 'enctype' => 'multipart/form-data', ]) !!} @csrf
{{ $errors->first('product_type_id') }}
{{ $errors->first('name') }}
{{ $errors->first('opening_stock') }}
{{ $errors->first('rate') }}
{{ $errors->first('selling_price') }}
{{ $errors->first('effective_date') }}
{{ $errors->first('image') }}
{{ $errors->first('description') }}
{{ Form::close() }}
@endsection @section('page-js') @endsection