@extends('layouts.app') @section('page-title', __('Create Rateable Item')) @section('page-heading', __('Create Rateable Item')) @section('content')
@include('partials.messages')
@csrf
@error('title')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('expires_at')
{{ $message }}
@enderror
Rateable Attributes
@if(old('attributes')) @foreach(old('attributes') as $index => $attribute)
@error('attributes.'.$index.'.name')
{{ $message }}
@enderror
@error('attributes.'.$index.'.description')
{{ $message }}
@enderror
@endforeach @endif
Back
@push('scripts') @endpush @push('styles') @endpush @endsection