@extends('admin.master', ['menu' => 'about_us', 'submenu' => 'natural-history']) @section('title', isset($title) ? $title : '') @section('content')
{{ __('Edit Journal') }}
{{ __('Home') }}
{{ __('Journals') }}
@method('PUT') @csrf
{{ __('English Title') }}
@error('en_title')
{{ $message }}
@enderror
{{ __('Arabic Title') }}
@error('fr_title')
{{ $message }}
@enderror
{{ __('English Description') }}
{{ old('en_description', $biodiversity_database->en_description) }}
@error('en_description')
{{ $message }}
@enderror
{{ __('Arabic Description') }}
{{ old('fr_description', $biodiversity_database->fr_description) }}
@error('fr_description')
{{ $message }}
@enderror
{{ __('Update') }}
@endsection