{!! Form::text('name', null, ['class' => 'form-control']) !!} @if ($errors->has('name')) {{$errors->first('name')}} @endif
{!! Form::text('email', null, ['class' => 'form-control']) !!} @if ($errors->has('email')) {{$errors->first('email')}} @endif
{!! Form::file('foto', ['class' => 'form-control','accept'=>'image/x-png,image/gif,image/jpeg']) !!} @if ($errors->has('foto')) {{$errors->first('foto')}} @endif