@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::text('name', null, ["class" => "form-control floating"]) !!}
{!! Form::email('email', null, ["class" => "form-control floating", "disabled"]) !!}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('current-password'))
{{ $errors->first('current-password') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif