@extends('admin/layouts/default') {{-- Page title --}} @section('title') Edit a sub_category @parent @stop @section('content')

Sub Categories

Edit sub_category

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($sub_category, ['method' => 'PATCH', 'action' => ['Sub CategoriesController@update', $sub_category->id]]) !!}
{!! Form::label('name', 'Name: ') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('category_id', 'Category: ') !!} {!! Form::select('category_id', $category, null, ['class' => 'form-control']) !!}
{!! Form::label('code', 'Code: ') !!} {!! Form::text('code', null, ['class' => 'form-control']) !!}
{!! Form::label('status_code', 'Status Code: ') !!} {!! Form::select('status_code', $status, null, ['class' => 'form-control']) !!}
{!! Form::submit('Update', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!}
@stop