19 lines
566 B
PHP
19 lines
566 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'Tambah Pegawai')
|
|
@section('content')
|
|
<div class="container">
|
|
<h1>Tambah Pegawai</h1>
|
|
|
|
<form action="{{ route('ms_pegawai.store') }}" method="POST">
|
|
@csrf
|
|
<div class="mb-3">
|
|
<label>Nama Pegawai</label>
|
|
<input type="text" name="NamaPegawai" class="form-control" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-success">Simpan</button>
|
|
<a href="{{ route('ms_pegawai.index') }}" class="btn btn-secondary">Kembali</a>
|
|
</form>
|
|
</div>
|
|
@endsection
|