Initial commit to new repo
This commit is contained in:
parent
a267f9bfcc
commit
a5173c981b
292 changed files with 17472 additions and 0 deletions
15
resources/views/admin/editclient.blade.php
Normal file
15
resources/views/admin/editclient.blade.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
@extends('master')
|
||||
|
||||
@section('title')
|
||||
Edit Client « Admin CP
|
||||
@stop
|
||||
|
||||
@section('content')
|
||||
<h1>Edit Client</h1>
|
||||
<form action="/admin/clients/edit/{{ $id }}" method="post" accept-charset="utf-8">
|
||||
<input type="text" name="client_url" id="client_url" value="{{ $client_url }}"><br>
|
||||
<input type="text" name="client_name" id="client_name" value="{{ $client_name }}"><br>
|
||||
<input type="submit" name="edit" value="Edit"><br><br>
|
||||
<input type="submit" name="delete" value="Delete">
|
||||
</form>
|
||||
@stop
|
Loading…
Add table
Add a link
Reference in a new issue