@extends('dashboard.layout') @section('title', 'Edit Instruction') @section('meta_description', 'Edit a page instruction.') @section('page_title', 'Edit Instruction') @push('scripts') {{-- Quill CSS --}} @endpush @section('content')

Edit Instruction

{{ $instruction->url }}

@csrf @method('PUT') {{-- Hidden field that Quill populates on submit --}} {{-- URL field --}}
@error('url')

{{ $message }}

@enderror
{{-- WYSIWYG Content field --}}
@error('content')

{{ $message }}

@enderror
{{-- Delete --}} @csrf @method('DELETE')
Cancel
@endsection