@extends('backend.template') @section('content')

{{ label('Edit Authors') }}

@csrf
{{ createText('title', 'title', 'Title', '', $data->title) }}
{{ createText('author_email', 'author_email', 'Author Email', '', $data->author_email) }}
{{ createPlainTextArea('author_description', '', 'author_description', $data->author_description) }}
{{ createImageInput('author_image', 'Author Image', '', $data->author_image) }}
@endsection