osb/resources/theme/backend/adminlte/r/supplier/create.blade.php
2018-06-05 21:13:57 +10:00

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