@extends('layouts.app') @section('content')

{{ trans('lang.recipes') }}

@csrf
@include('alerts.error_messages')
{{ trans('lang.recipes_create') }} {{-- Recipe Name --}}
{{ trans('lang.recipes_name_help') }}
{{-- Description --}}
{{ trans('lang.category_description_help') }}
{{-- Store --}}
{{ trans('lang.recipes_store_help') }}
{{--Chef --}}
{{ trans('lang.recipes_chef_help') }}
{{-- Category --}}
{{ trans('lang.product_category_help') }}
{{-- Steps --}}
{{ trans('lang.recipes_steps_help') }}
{{-- Price --}}
{{ trans('lang.recipes_price_help') }}
{{-- Recipe Thumbnail --}}
{{ trans('lang.recipe_thumbnail_help') }}
{{-- Recipe Video --}}
{{ trans('lang.recipes_video_help') }}
{{-- Checkboxes --}}
is_daily_recipe ?? false) ? 'checked' : '' }}>
{{ trans('lang.is_daily_recipe_desc') }}
{{-- Days of Week --}}
{{ trans('lang.select_days_help') }}
{{ trans('lang.product_ingredients') }}
@php $recipeIngredients = $recipeIngredients ?? []; @endphp @foreach($recipeIngredients as $index => $ingredient) @endforeach
{{ trans('lang.ingredients') }} {{ trans('lang.description') }} {{ trans('lang.unit') }} {{ trans('lang.unit_value') }} {{ trans('lang.note') }} {{ trans('lang.action') }}
{{ trans('lang.select_product') }} {{ trans('lang.action') }}
{{ trans('lang.cancel') }}
@endsection @section('scripts') @endsection