@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.creator.title_singular') }}
@csrf
@if($errors->has('name')) {{ $errors->first('name') }} @endif {{ trans('cruds.creator.fields.name_helper') }}
@if($errors->has('typeofmodels')) {{ $errors->first('typeofmodels') }} @endif {{ trans('cruds.creator.fields.typeofmodels_helper') }}
@if($errors->has('platform')) {{ $errors->first('platform') }} @endif {{ trans('cruds.creator.fields.platform_helper') }}
@if($errors->has('link')) {{ $errors->first('link') }} @endif {{ trans('cruds.creator.fields.link_helper') }}
@if($errors->has('subscribed')) {{ $errors->first('subscribed') }} @endif {{ trans('cruds.creator.fields.subscribed_helper') }}
@endsection