Title some information

Some Link
Add New
Horizontal Form
{{Form::open(array("url"=>"/admin/add-recipe/addrecipe","method" => "POST","role"=>"form","class" => "form-horizontal"))}}
{{Form::text('recipe_name','',array("class"=>"form-control", "placeholder"=>"Enter Recipe Name"))}} {{$errors->first('recipe_name')}}
{{Form::text('preparation_time','',array("class"=>"form-control", "placeholder"=>"Enter Preparation Timee"))}} {{$errors->first('preparation_time')}}
{{Form::textarea('description','',array("class"=>"form-control", "placeholder"=>"Description"))}} {{$errors->first('description')}}
{{Form::textarea('ingredient','',array("class"=>"form-control", "placeholder"=>"Ingredient"))}} {{$errors->first('ingredient')}}
{{Form::close()}}