{{ __('Edit Entry') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
{{ old('title', $entry->title) }}
{!! old('content', $entry->content) !!}
@if ($entry->image_path) Current Image @endif
{{ __('Update Entry') }}