@extends('layouts.header') @section('title','Edit Image') @section('content')
Edit Image
@csrf @if (count($errors)>0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@error('name') {{ $message }} @enderror
@endsection