@extends('backend.admin-master') @section('site-title') {{__('Edit Donation Post')}} @endsection @section('style') @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('Edit Donation Post')}}

{{__('All Donation Posts')}}
@csrf
@php $event_img = get_attachment_image_by_id($donation->image,null,false); $event_img_btn_label = 'Upload Image'; @endphp @if (!empty($event_img))
@php $event_img_btn_label = 'Change Image'; @endphp @endif
{{__('Recommended image size 1920x1280')}}
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection