{!! Form::label('name', 'Name *') !!}
{!! Form::text('name', null, ['class' => ($errors->has('name')) ? 'form-control is-invalid' : 'form-control'] ) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::label('email', 'Email *') !!}
{!! Form::text('email', null, ['class' => ($errors->has('email')) ? 'form-control is-invalid' : 'form-control'] ) !!}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif