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

Create Inspection Category

{!! Form::open(['route'=>array('inspection-category.store'), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'post']) !!}
{{$errors->first('code')}}
{{$errors->first('inspection_category')}}
{!! Form::select("status",['active'=> 'Active', 'inactive'=>'Inactive'], old("status"), ['class'=>'form-control' ,'id' => 'status','required'=>'required'] ) !!}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush