@extends('layouts.app') @section('page_css') @parent @endsection @section('content') @php $profile_pic_name = $events[0]['profile_pic'] ?? ""; @endphp
Edit Event
@csrf
*@error('events_name')please provide title @enderror
@php $date_from=$events[0]['date_from']; $date_to=$events[0]['date_to']; $event_date_range=date("m/d/Y", strtotime($date_from))." - ".date("m/d/Y", strtotime($date_to)); @endphp *@error('events_date_range')please provide date range @enderror
@if(@is_file(public_path('uploads/events_profile_pic')."/".$profile_pic_name)) @endif
@endsection @section('modals') @parent @endsection @section('page_scripts') @parent @endsection