{!! Form::label('id', 'Id:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->id !!}

{!! Form::label('name', 'Name:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->name !!}

{!! Form::label('image', 'Image:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->image !!}

{!! Form::label('price', 'Price:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->price !!}

{!! Form::label('discount_price', 'Discount Price:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->discount_price !!}

{!! Form::label('description', 'Description:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->description !!}

{!! Form::label('ingredients', 'Ingredients:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->ingredients !!}

{!! Form::label('weight', 'Weight:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->weight !!}

{!! Form::label('featured', 'Featured:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->featured !!}

{!! Form::label('restaurant_id', 'Restaurant Id:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->restaurant_id !!}

{!! Form::label('category_id', 'Category Id:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->category_id !!}

{!! Form::label('created_at', 'Created At:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->created_at !!}

{!! Form::label('updated_at', 'Updated At:', ['class' => 'col-3 control-label text-right']) !!}

{!! $food->updated_at !!}