@extends('apex-layouts.main') @section('content')
@if ($model->exists) @method('PUT') @endif @csrf

{{ ($model->exists)?'Edit Meal Plan':'New Meal Plan' }}

@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if ($errors->has('availDays')) {{ $errors->first('availDays') }} @endif
@if ($errors->has('availCalories')) {{ $errors->first('availCalories') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
Back
@endsection @section('scripts') @stop @section('styles') @stop