Recipes Categories

Go Back
@if(Session::has('success'))
Success! {{Session::get('success')}}
@endif @if(Session::has('failure'))
Error! {{Session::get('success')}}
@endif
Edit Category
{{Form::open(array("url"=>"/admin/recipes/categories/update/".$category->id,"method" => "PUT","role"=>"form","class" => "form-horizontal","files"=>"true"))}}
{{Form::text('recipe_category',$category->recipe_category,array("class"=>"form-control", "placeholder"=>"Enter Category Name"))}} {{$errors->first('recipe_category')}}
{{Form::file('image',array("class"=>"form-control"))}}
@if($category->image == '') There is no image uploaded for this product @else {{HTML::image('images/'.$category->image,"",["class"=>"img-brand"])}} @endif
{{Form::close()}}