@extends('base')

@section('content')
 <style>
 h2 {
   text-align:
   color: blue;
}
</style>

 <h1><MARQUEE>พื้นที่สำหรับคนชอบรีวิวอาหาร!!🎬🎬</MARQUEE></h1>

<form action="{{ route('product.store') }}" method="post" >
  {{ csrf_field() }}
  @if(Session::get('status'))
   <div class="alert alert-info">
     {{Session::get('status')}}
   </div>
  @endif
  <input type="text" name="name" placeholder="ป้อนชื่อ"><br><br>
  <textarea wrap="virtual" name="ment" rows="5" cols="50" placeholder="ใส่ความคิดเห็นของคุณสิ"></textarea>
  <br><br>
  <button class="btn" type="submit">ok</button>
</form>
<a href="/product" class="btn" type="button" >ไปดูหน้ากระทู้กัน !!</a>

@stop