@extends('layouts.backend.app') @push('css') @endpush @section('content')

{{ __('Edit News') }}

@if ($errors->any())
{{ __('Whoops!') }} {{ __('There were some problems with your input.') }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('put') @php $excerpt_info = $ln_edit->excerpt->value; $description_info = $ln_edit->description->value; $thumimg_info = $ln_edit->thum_image->value; @endphp

{{ $thumimg_info }}
@endsection @push('js') @endpush