19 lines
420 B
PHP
19 lines
420 B
PHP
@extends('layouts.admin.admin')
|
|
@section('title', 'Office Visit Student')
|
|
|
|
@section('content')
|
|
|
|
<section>
|
|
<div class="section-body">
|
|
<form class="form form-validate floating-label" action="{{route('officevisit.store')}}" method="POST" enctype="multipart/form-data" novalidate>
|
|
@include('officevisit.partials.form',['header' => 'Add Student Details'])
|
|
</form>
|
|
</div>
|
|
</section>
|
|
@stop
|
|
|
|
|
|
|
|
|
|
|