@extends('layouts.admin') @section('title', 'Sub Category') @section('content') Sub Category Sub Category Create Add Sub Category {{ Html::ul($errors->all()) }} {{ Form::open(['files'=>true,'url' => 'admin/sub_categories']) }} Category @foreach($categories as $cat) {{$cat->title}} @endforeach Name {{ Form::text('title', Request::old('title'), array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter name')) }} Description {{ Form::text('arabic_title', Request::old('arabic_title'), array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter arabic name')) }} Status Active Inactive {{ Form::close() }} @endsection