first
This commit is contained in:
25
resources/views/contact.blade.php
Normal file
25
resources/views/contact.blade.php
Normal file
@@ -0,0 +1,25 @@
|
||||
@extends('layout')
|
||||
|
||||
@section('title')
|
||||
@parent
|
||||
:: Contact
|
||||
@endsection
|
||||
|
||||
@section('heading', 'Contact Page')
|
||||
|
||||
@section('content')
|
||||
|
||||
<form onsubmit="alert(1)">
|
||||
@csrf
|
||||
<label for="name">Name:*<label>
|
||||
<input type="text" id="name" name="name" /><br>
|
||||
<label for="email">Email:*<label>
|
||||
<input type="email" id="email" name="email" placeholder="person@gmail.com" /><br>
|
||||
<label for="subject">Subject:<label>
|
||||
<input type="text" id="subject" name="subject" /><br>
|
||||
<label for="message">Message:*</label>
|
||||
<textarea id="message" name="message"></textarea><br>
|
||||
<button type="submit">Send Message</button>
|
||||
</form>
|
||||
|
||||
@endsection
|
||||
Reference in New Issue
Block a user