@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