23 lines
798 B
PHP
23 lines
798 B
PHP
|
<x-layout>
|
||
|
<div class="container">
|
||
|
@isset($success)
|
||
|
<div class="alert alert-success" role="alert">{{ $success }}</div>
|
||
|
@endisset
|
||
|
|
||
|
<div class="card rounded shadow mt-2 mr-5 ml-5">
|
||
|
<div class="card-body">
|
||
|
<h2>Opret Stilling</h2>
|
||
|
<form action="{{ @route("admin-store-occupation") }}" method="post">
|
||
|
@csrf
|
||
|
<div class="mb-3">
|
||
|
<label for="title" class="form-label">Navn</label>
|
||
|
<input type="text" class="form-control" id="title" name="name">
|
||
|
</div>
|
||
|
|
||
|
<button type="submit" class="btn btn-primary">Opret</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</x-layout>
|