@extends('layouts.master') @section('title',__('Create Actor')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Create Actor')}}
{!! Form::open(['method' => 'POST', 'action' => 'ActorController@store', 'files' => true]) !!}
{!! Form::label('name',__('Name')) !!} {!! Form::text('name', old('name'), ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('name') }}
{!! Form::label('biography', __('Biography')) !!} {!! Form::textarea('biography', old('biography'), ['class' => 'form-control','row'=>'3', 'placeholder' => __('Please Enter Actor Biography')]) !!} {{ $errors->first('biography') }}
{!! Form::label('place_of_birth', __('Place of Birth')) !!} {!! Form::textarea('place_of_birth', old('place_of_birth'), ['class' => 'form-control','row'=>'3', 'placeholder' => __('Please enter place of birth')]) !!} {{ $errors->first('place_of_birth') }}
{!! Form::label('DOB', __('Date of Birth')) !!} {!! Form::date('DOB', old('DOB'), ['class' => 'form-control','placeholder' => __('Please enter date of birth')]) !!} {{ $errors->first('DOB') }}
{!! Form::label('image', __('Actor Image')) !!} {!! Form::file('image', ['class' => 'input-file', 'id'=>'image']) !!}

{{__('Choose Custom Image')}}

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