{{ Form::label('title', getphrase('title')) }} * {{ Form::text('title', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('title'), 'ng-model'=>'title', 'ng-pattern' => getRegexPattern("name"), 'required'=> 'true', 'ng-minlength' => '2', 'ng-maxlength' => '30', 'ng-class'=>'{"has-error": formEmails.title.$touched && formEmails.title.$invalid}' )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('pattern')!!} {!! getValidationMessage('minlength')!!} {!! getValidationMessage('maxlength')!!}
{{ Form::label('key', getphrase('key')) }} * {{ Form::text('resume_key', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('key'), 'ng-model'=>'resume_key', 'required'=> 'true', 'ng-minlength' => '2', 'ng-maxlength' => '30', 'ng-class'=>'{"has-error": formEmails.resume_key.$touched && formEmails.resume_key.$invalid}' )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('pattern')!!} {!! getValidationMessage('minlength')!!} {!! getValidationMessage('maxlength')!!}
{{ Form::label('image', getphrase('image')) }}
{!! Form::file('image', array('id'=>'image_input', 'accept'=>'.png,.jpg,.jpeg')) !!}