Files
new_raffles/Modules/CourseFinder/resources/views/program/edit.blade.php
2025-07-27 17:40:56 +05:45

11 lines
483 B
PHP

@extends('layouts.app')
@section('content')
<div class="container-fluid">
<x-dashboard.breadcumb :title="$title" />
{{ html()->modelForm($program, 'PUT')->route('program.update', $program->id)->class(['needs-validation'])->attributes(['novalidate', 'enctype' => 'multipart/form-data', 'onkeydown' => "return event.key != 'Enter';"])->open() }}
@include('coursefinder::program.partials.form')
{{ html()->closeModelForm() }}
</div>
@endsection