@extends('layouts.app') @section('content') @if( Auth::check() ) @php ($auth=Auth::user()->id ) @endif

{{ $pageNote }}

@foreach($row as $row) @php ( $id=$row->forum_cat_id ) @php ( $title=$row->name ) @endforeach {!! Form::open(array('url'=>'forumcategory/categoryupdate?return='.$return, 'class'=>'form-horizontal add-category','files' => true , 'parsley-validate'=>'','novalidate'=>' ')) !!}
{!! Form::text('title', $title,array('class'=>'form-control cat-name', 'placeholder'=>'', 'required'=>'true' ,"minlength"=>6 , 'data-parsley-minlength-message'=>'Field should be minimum 6 character' )) !!}
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
{!! Form::close() !!}
@stop