@extends('layouts.md-admin') @section('title', trans('cruds.researchArticle.title')) @section('content')
{{ trans('global.edit') }} {{ trans('cruds.researchArticle.title_singular') }}
@method('PUT') @csrf
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif {{ trans('cruds.researchArticle.fields.title_helper') }}
@if ($errors->has('date_of_publication'))
{{ $errors->first('date_of_publication') }}
@endif {{ trans('cruds.researchArticle.fields.date_of_publication_helper') }}
@if ($errors->has('author'))
{{ $errors->first('author') }}
@endif {{ trans('cruds.researchArticle.fields.author_helper') }}
@if ($errors->has('geo_context'))
{{ $errors->first('geo_context') }}
@endif {{ trans('cruds.researchArticle.fields.geo_context_helper') }}
@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif {{ trans('cruds.researchArticle.fields.country_helper') }}
@if ($errors->has('region_zone'))
{{ $errors->first('region_zone') }}
@endif {{ trans('cruds.researchArticle.fields.region_zone_helper') }}
@if ($errors->has('city'))
{{ $errors->first('city') }}
@endif {{ trans('cruds.researchArticle.fields.city_helper') }}
@if ($errors->has('scientificareas'))
{{ $errors->first('scientificareas') }}
@endif {{ trans('cruds.researchArticle.fields.scientificarea_helper') }}
@if ($errors->has('abstract'))
{{ $errors->first('abstract') }}
@endif {{ trans('cruds.researchArticle.fields.abstract_helper') }}
@if ($errors->has('keywords'))
{{ $errors->first('keywords') }}
@endif {{ trans('cruds.researchArticle.fields.keyword_helper') }}
@if ($errors->has('links_research'))
{{ $errors->first('links_research') }}
@endif {{ trans('cruds.researchArticle.fields.links_research_helper') }}
{{--
@if ($errors->has('author_module'))
{{ $errors->first('author_module') }}
@endif {{ trans('cruds.researchArticle.fields.author_module_helper') }}
--}}
@if ($errors->has('evaluation_discussion'))
{{ $errors->first('evaluation_discussion') }}
@endif {{ trans('cruds.researchArticle.fields.evaluation_discussion_helper') }}
@if ($errors->has('date_entry_module'))
{{ $errors->first('date_entry_module') }}
@endif {{ trans('cruds.researchArticle.fields.date_entry_module_helper') }}
@if ($errors->has('suggestion'))
{{ $errors->first('suggestion') }}
@endif {{ trans('cruds.researchArticle.fields.abstract_helper') }}
@if (Gate::check('research_article_user_access'))
  {{ trans('global.cancel') }}
@elseif(Gate::check('research_article_access')) @endif
@endsection @section('scripts') @endsection