14 lines
452 B
PHP
14 lines
452 B
PHP
@extends('template.template_no_auth')
|
|
|
|
@section('title', 'Dashboard')
|
|
|
|
@section('content')
|
|
<div class="d-flex justify-content-center align-items-center gap-3 vh-100">
|
|
<a href="{{url('/guest/registrasi/create_pasien')}}" class="btn btn-primary btn-lg">DAFTAR PASIEN BARU</a>
|
|
<a href="{{url('/guest/registrasi/create')}}" class="btn btn-primary btn-lg">REGISTRASI BEROBAT</a>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('custom_js')
|
|
@endsection
|