13 lines
350 B
PHP
13 lines
350 B
PHP
@extends('layouts.app')
|
|
@section('title', 'Daftar Perunding')
|
|
@section('heading', 'Perunding')
|
|
@section('page-title', 'Daftar Perunding Baharu')
|
|
|
|
@section('content')
|
|
<div class="card"><div class="card-body">
|
|
<form method="POST" action="{{ route('consultants.store') }}">
|
|
@include('consultants._form')
|
|
</form>
|
|
</div></div>
|
|
@endsection
|