@extends('layouts.default') @extends('content_wrappers.md-10') @section('title', ' | Create Recipe') @section('heading', 'Create Recipe') @section('content')
{{ Form::model(null, array('route' => array('recipes.store'), 'method' => 'POST', 'id' => 'recipeForm')) }}
{{ Form::label('name', 'Recipe Name:') }} {{ Form::text('name', null, array('class' => 'form-control', 'id' => 'name')) }}
{{ Form::label('author', 'Created By:') }} {{ Form::text('author', null, array('class' => 'form-control', 'id' => 'authorFilter')) }}
{{ Form::label('user_id', 'Maintained By:') }}
Entered On: {{now()->format('Y/m/d') }}
Last Changed: {{now()->format('Y/m/d') }}
{{ Form::label('servings', 'Servings:') }} {{ Form::text('servings', null, array('class' => 'form-control','id' => 'servings')) }}
{{ Form::label('servings', 'Serving Size:') }} {{ Form::text('serving_size', null, array('class' => 'form-control','id' => 'serving_size')) }}

Categories

{{ Form::button("Add", array('id'=>'addCategory','class'=>'form-control'))}}

Description

{{ Form::textarea('description', null, array('class' => 'form-control', 'id' => 'descriptionEditor')) }}

Ingredients

Order Alternative? Quantity Measurement Name           Notes
{{Form::checkbox(null,null,false,array('class' => 'form-control ingredientAlternative','id'=>'addIngredientAlternative'))}} {{Form::text(null,null,array('class' => 'form-control ingredientQuantity'))}} {{Form::text(null,null,array('class' => 'form-control ingredientMeasurement'))}} {{Form::text(null,null,array('class' => 'form-control ingredientName'))}} {{Form::text(null,null,array('class' => 'form-control ingredientNotes'))}} {{Form::button("Add",array('class' => 'form-control','id' => 'addIngredient'))}}


Instructions

{{ Form::textarea('instructions', null, array('class' => 'form-control', 'id' => 'instructionsEditor')) }}
{{ Form::submit('Create Recipe', array('class' => 'btn btn-primary','id'=>'submit')) }} {{ Form::close() }} @endsection @section('scripts') @endsection @section('styles') @endsection