15 lines
322 B
PHP
15 lines
322 B
PHP
@extends('layouts.auth')
|
|
|
|
@section('htmlheader_title')
|
|
Supplier Add
|
|
@endsection
|
|
|
|
@section('content')
|
|
<body>
|
|
<form method="POST" action="/r/supplier/store">
|
|
{{ csrf_field() }}
|
|
Name: <input name="name" > <br>
|
|
<button>Submit</button>
|
|
</form>
|
|
</body>
|
|
@endsection |