@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.usecase.title_singular') }}
@method('POST') @csrf
@if($errors->has('cover'))
{{ $errors->first('cover') }}
@endif {{ trans('cruds.usecase.fields.cover_helper') }}
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif {{ trans('cruds.usecase.fields.image_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.usecase.fields.name_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.usecase.fields.description_helper') }}
@if($errors->has('problem'))
{{ $errors->first('problem') }}
@endif {{ trans('cruds.usecase.fields.problem_helper') }}
@if($errors->has('solution'))
{{ $errors->first('solution') }}
@endif {{ trans('cruds.usecase.fields.solution_helper') }}
@if($errors->has('product'))
{{ $errors->first('product') }}
@endif {{ trans('cruds.usecase.fields.product_helper') }}
@endsection @section('scripts') @endsection