@extends('backend.layouts.app') @section('title', 'Edit Notice') @section('content')
Edit Notice
Back to all notices
@csrf @method('PUT')
{{-- Notice Title --}}
@error('notice_title') {{ $message }} @enderror
{{-- Notice For --}}
@error('notice_for') {{ $message }} @enderror
{{-- Pinned --}}
{{-- File Type --}}
{{-- Active --}}
{{-- Upload File --}}
@error('file') {{ $message }} @enderror
{{-- Current File Preview --}}
@if ($notice->file_path) {{-- Image View --}} @if ($notice->file_type === 'image') @endif {{-- PDF View --}} @if ($notice->file_type === 'pdf') @endif @else

No file uploaded.

@endif
@endsection