14 lines
386 B
PHP
14 lines
386 B
PHP
@extends('layouts.app')
|
|
@section('title', 'Kemaskini Perunding')
|
|
@section('heading', 'Perunding')
|
|
@section('page-title', 'Kemaskini Perunding')
|
|
|
|
@section('content')
|
|
<div class="card"><div class="card-body">
|
|
<form method="POST" action="{{ route('consultants.update', $consultant) }}">
|
|
@method('PUT')
|
|
@include('consultants._form')
|
|
</form>
|
|
</div></div>
|
|
@endsection
|