@extends('layouts.mainlayout') @section('title', 'Organisation') @section('main')
Create/Edit Organisation
@if(isset($organisation) != null)
@else @endif @csrf
Organisation
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if(isset($organisation) != null) @if(isset($organisation) && $organisation->image)
@php // Add a cache-busting parameter to the image URL $imageUrl = URL::to('storage/' . $organisation->image) . '?timestamp=' . now()->timestamp; @endphp
@endif @endif
@endsection