@extends('layouts.md-admin') @section('title', trans('cruds.scientificArea.title')) @section('content')
{{ trans('global.edit') }} {{ trans('cruds.scientificArea.title_singular') }}
@method('PUT') @csrf
@if ($errors->has('en_name'))
{{ $errors->first('en_name') }}
@endif {{ trans('cruds.scientificArea.fields.name_helper') }}
@if ($errors->has('es_name'))
{{ $errors->first('es_name') }}
@endif {{ trans('cruds.scientificArea.fields.name_helper') }}
@if ($errors->has('fr_name'))
{{ $errors->first('fr_name') }}
@endif {{ trans('cruds.scientificArea.fields.name_helper') }}
@if ($errors->has('it_name'))
{{ $errors->first('it_name') }}
@endif {{ trans('cruds.scientificArea.fields.name_helper') }}
@if ($errors->has('pt_name'))
{{ $errors->first('pt_name') }}
@endif {{ trans('cruds.scientificArea.fields.name_helper') }}
@if ($errors->has('order_by'))
{{ $errors->first('order_by') }}
@endif {{ trans('cruds.scientificArea.fields.order_by_helper') }}
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.scientificArea.fields.status_helper') }}
@endsection