@extends ('backend.layouts.app') @section ('title', trans('labels.backend.authors.management') . ' | ' . trans('labels.backend.authors.edit')) @section('page-header')

{{ trans('labels.backend.authors.management') }} {{ trans('labels.backend.authors.edit') }}

@endsection @section('content') {!! Html::form()->route('admin.authors.update', $authors)->class('form-horizontal')->attribute('role', 'form')->method('POST')->id('edit-author')->acceptsFiles()->open() !!} {!! Html::hidden('_method', 'PATCH') !!} {!! csrf_field() !!}

{{ trans('labels.backend.authors.edit') }}

@include('backend.authors.partials.authors-header-buttons')
{{-- Including Form blade file --}} @include("backend.authors.form")
{!! Html::a()->href(route('admin.albums.index'))->class('btn btn-danger btn-md')->text('Cancel') !!} {!! Html::submit(trans('buttons.general.crud.update')) ->class('btn btn-primary btn-md') ->render() !!}
@endsection