Initial commit to new repo
This commit is contained in:
parent
a267f9bfcc
commit
a5173c981b
292 changed files with 17472 additions and 0 deletions
14
resources/views/admin/deletecontact.blade.php
Normal file
14
resources/views/admin/deletecontact.blade.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
@extends('master')
|
||||
|
||||
@section('title')
|
||||
Delete Contact? « Admin CP
|
||||
@stop
|
||||
|
||||
@section('content')
|
||||
<form action="/admin/contacts/delete/{{ $id }}" method="post">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
||||
<label for="delete">Are you sure you want to delete this contact? </label><input type="checkbox" name="delete" id="delete">
|
||||
<br>
|
||||
<input type="submit" id="submit" value="Submit">
|
||||
</form>
|
||||
@stop
|
Loading…
Add table
Add a link
Reference in a new issue