@extends('admin.layout') @section('content')

{{ __('History Section') }}

{{ __('Edit History') }}

@csrf
@if ($errors->has('language_id'))

{{ $errors->first('language_id') }}

@endif

{{ __('Upload 505X300 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

@if ($errors->has('image'))

{{ $errors->first('image') }}

@endif
@if ($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if ($errors->has('date'))

{{ $errors->first('date') }}

@endif
@if ($errors->has('position'))

{{ $errors->first('position') }}

@endif
@if ($errors->has('serial_number'))

{{ $errors->first('serial_number') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@endsection