@extends('page') @section('content')

Edit Category

@if ($message = Session::get('success'))
{{ $message }}
@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.

@endif
{!! Form::model($category, ['method' => 'POST','route' => ['subCategoryUpdate', $category->id]]) !!}
{{$category->parentCategory->category}}
{!! Form::text('category', null, array('placeholder' => 'Category Name','class' => 'form-control form-control-sm')) !!}
{!! Form::close() !!}

Guidelines

Guidelines comes here.
@endsection