@extends('layouts.admin') @section('title', 'New Product — OAH') @section('content')

New product

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include('admin.products._form', [ 'formAction' => route('admin.products.store'), 'submitLabel' => 'Create product', ])
@endsection