12 lines
281 B
PHP
12 lines
281 B
PHP
@extends('layouts.app')
|
|
@section('title', 'Neue Eintragung')
|
|
|
|
@section('content')
|
|
<form method="POST" action="{{ route('eintragung.store') }}">
|
|
<div class="row">
|
|
</div>
|
|
|
|
{!! csrf_field()!!}
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
</form>
|
|
@endsection |