@extends('layouts.appv2') @section('content')

{{ isset($model) ? 'Edit Memo' : 'Add Memo' }}

{{-- Display validation errors --}} @if ($errors->any())
@endif {{-- Form for Add/Edit --}}
@csrf @if (isset($model)) @method('PUT') {{-- Use PUT method for editing --}} @endif
@endsection