@extends('admin.layout.app') @section('title','Create Inventory Sub Category') @section('content')

Create Inventory Sub Category

{!! Form::open(['route'=>array('sub-category.store'), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'post']) !!}
{!! Form::select("category_id", [''=>'Select Category']+$category, old("category_id"), ['class'=>'form-control' ,'id' => 'category_id','required'=>'required'] ) !!}
{{$errors->first('sub_category_name')}}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush