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

{{__('milk.create_milk')}}

@endsection @section('content')

{{__('milk.create_new_milk')}}

{{ csrf_field() }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include ('milks.form', ['milk' => null,])
@endsection