19 lines
589 B
PHP
19 lines
589 B
PHP
@extends('master')
|
|
|
|
@section('title')Edit Bio « Admin CP « @stop
|
|
|
|
@section('content')
|
|
<h1>Edit bio</h1>
|
|
<form action="/admin/bio" method="post" accept-charset="utf-8" class="admin-form form">
|
|
{{ csrf_field() }}
|
|
{{ method_field('PUT') }}
|
|
<div>
|
|
<label for="content">Content:</label>
|
|
<br>
|
|
<textarea name="content" id="content" rows="10" cols="50">{{ old('content', $bioEntry?->content) }}</textarea>
|
|
</div>
|
|
<div>
|
|
<button type="submit" name="save">Save</button>
|
|
</div>
|
|
</form>
|
|
@stop
|