authentification fini
This commit is contained in:
31
resources/views/vue/creationClient.blade.php
Normal file
31
resources/views/vue/creationClient.blade.php
Normal file
@@ -0,0 +1,31 @@
|
||||
@extends('layout')
|
||||
@section('content')
|
||||
<link href="{{ asset('css/style.css') }}" rel="stylesheet">
|
||||
<h1>Création d'un nouveau client</h1>
|
||||
<form class="form-clean" action="{{ url('/clients/ajout') }}" method="POST">
|
||||
@csrf
|
||||
<div class="field">
|
||||
<label for="nom">Nom</label>
|
||||
<input type="text" id="nom" name="nom" required>
|
||||
</div>
|
||||
|
||||
<div class="field">
|
||||
<label for="prenom">Prénom</label>
|
||||
<input type="text" id="prenom" name="prenom" required>
|
||||
</div>
|
||||
|
||||
<div class="field">
|
||||
<label for="email">E-mail</label>
|
||||
<input type="email" id="email" name="email" required>
|
||||
</div>
|
||||
|
||||
<div class="field">
|
||||
<label for="telephone">Téléphone</label>
|
||||
<input type="text" id="telephone" name="telephone">
|
||||
</div>
|
||||
|
||||
<button class="btn-submit" type="submit">Soumettre</button>
|
||||
</form>
|
||||
|
||||
|
||||
@endsection
|
||||
Reference in New Issue
Block a user