osb/resources/theme/backend/adminlte/r/supplier/create.blade.php

15 lines
322 B
PHP
Raw Normal View History

2018-06-05 11:13:57 +00:00
@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