@extends('layouts.admin') @section('title',__('adminstaticwords.Edit')." "." - $actor->name") @section('content')

reply {{__('adminstaticwords.EditActor')}}

{!! Form::model($actor, ['method' => 'PATCH', 'action' => ['ActorController@update', $actor->id], 'files' => true]) !!}
{!! Form::label('name', __('adminstaticwords.Name')) !!} {!! Form::text('name', old('name'), ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('name') }}
{!! Form::label('biography', __('adminstaticwords.Biography')) !!} {!! Form::textarea('biography', old('biography'), ['class' => 'form-control','row'=>'3', 'placeholder' => __('adminstaticwords.PleaseEnterActorBiography')]) !!} {{ $errors->first('biography') }}
{!! Form::label('image',__('adminstaticwords.ActorImage')) !!} {!! Form::file('image', ['class' => 'input-file', 'id'=>'image']) !!}

{{__('adminstaticwords.ChooseCustomImage')}}

{{ $errors->first('image') }}
{!! Form::close() !!}
@endsection