@extends('admin.layout') @section('content')

{{ trans('labels.AddSubCategories') }} {{ trans('labels.AddSubCategories') }}...

{{ trans('labels.AddSubCategories') }}


@if (count($errors) > 0) @if($errors->any()) @endif @endif
{!! Form::open(array('url' =>'admin/addnewsubcategory', 'method'=>'post', 'class' => 'form-horizontal form-validate', 'enctype'=>'multipart/form-data')) !!}
{{ trans('labels.ChooseMainCategory') }}
@foreach($result['languages'] as $languages)
{{ trans('labels.SubCategoryName') }} ({{ $languages->name }}).
@endforeach
{!! Form::file('newImage', array('id'=>'newImage')) !!} {{ trans('labels.UploadSubCategoryImage') }}
{!! Form::file('newIcon', array('id'=>'newIcon')) !!} {{ trans('labels.UploadSubCategoryIcon') }}
{!! Form::close() !!}
@endsection