You are on page 1of 1

@extends('Admin.

app')
@section('body')

<div class="col-lg-12 grid-margin stretch-card">


<div class="card">
<div class="card-body">
<h2 class="card-title"><b>Product</b></h2>

<form action="{{url('admin')}}/insertproduct" method="post" class="forms-


sample" enctype="multipart/form-data">
@csrf
<div class="form-group">
<label for="exampleInputName1">Product Name</label>
<input type="text" placeholder="Enter Product Name"
name="Product Name" class="form-control">
</div>
<div class="form-group">
<label for="exampleSelectGender">Select Category</label>
<select class="form-control" name="c_id" id="c_id">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
</div>
<div class="form-group">
<label for="exampleSelectGender">Select Sub
Category</label>
<select class="form-control" name="s_c_id" id="s_c_id"
placeholder="Select Sub Category" >
<option>1</option>
<option>2</option>
<option>3</option>
</select>
</div>
<div class="form-group">
<label for="exampleInputName1">Product Price</label>
<input type="text" placeholder="Enter Product Price"
name="Product Price" class="form-control">
</div>
<div class="form-group">
<textarea> <textarea>
</form>
</div>
</div>
</div>

@endsection

You might also like