pai-sklep/resources/views/order/create.blade.php

25 lines
532 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
</style>
</head>
<body>
@if(Session::has('success'))
<div class="alert alert-success">
{{Session::get('success')}}
</div>
@endif
<div>
<form method="post" action="./">
<input type="text" name="products[0]">
<input type="submit">
@csrf
</form>
</div>
</body>
</html>