@extends('layouts.app') @section('content')

{{ ($senddata->id != '') ? 'Edit' : 'Add' }} Product Catgeory

{!! Form::model($senddata, ['route' => $route, 'method' => $method, 'id'=>'product_category_form' , 'files' => true,'class' => 'form']) !!}
{!! Form::select('mc_id',$main_category,($senddata->id != '') ? $senddata->mc_id : '',['class' => 'form-control','placeholder'=>'Please Select Product Main Category','id'=>'mc_id']) !!}
{{ Form::text('pc_name',($senddata->id != '') ? $senddata->pc_name : old('pc_name'),['class' => 'form-control','data-error' => 'Enter Product Catgeory Name','placeholder'=>'Enter Product Catgeory Name'] ) }}
@if ($senddata->id)
{!! Form::select('status',['1'=>'Active','0'=>'In Active'],($senddata->id != '') ? $senddata->status : '',['class' => 'form-control']) !!}
@endif
Cancel
{!! Form::close() !!}
@endsection @section('javascript') @endsection