Edit User Profile: {{$author->name}}

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::model($author, [ 'route'=>['admin.authors.update', $author->id], 'method'=>'PUT', 'class'=>'form-horizontal', 'files'=>true ]) !!}
{{ Form::label('name', '* Full Name:', ['class'=>'col-lg-3 control-label', 'for'=>'validate-name']) }}
{{ Form::text('name', null, array( 'class' => 'form-control', 'name'=> 'name', 'id' => 'validate-text', 'placeholder' => 'Name...', 'required'=> '', 'maxlength'=>'255')) }}
{{ Form::label('langid', '* Language', ['class'=>'col-lg-3 control-label']) }}
{{ Form::select('langid', $languages, null, [ 'class' => 'form-control', 'placeholder' => 'Language', 'required' =>'', 'id'=>'validate-select' ]) }}
{{ Form::label('email', '* Email :', ['class' => 'col-lg-3 control-label'])}}
{{ Form::email('email', null, array( 'class' => 'form-control', 'placeholder' => 'Email...', 'required'=> '')) }}
{{ Form::label('profession', '* Profession:', ['class' => 'col-lg-3 control-label'])}}
{{ Form::text('profession', null, array( 'class' => 'form-control', 'placeholder' => 'Profession...', 'required'=> '')) }}
{{ Form::label('description', '* Description:', ['class' => 'col-lg-2 control-label'])}}
{{ Form::text('description', null, array( 'class' => 'form-control', 'placeholder' => 'Description...', 'required'=> '')) }}
{{ Form::label('image', 'Avatar:', ['class' => 'col-lg-3 control-label'])}}
{{ Form::file('image', ['class' => 'form-control'])}}
Cancel
{!! Form::close() !!}