@if ($wishlist) {!! Form::open(['url' => $wishlist->id ? 'wishlists/edit/' . $wishlist->id : 'wishlists/create']) !!}
{!! Form::label('name', 'Name') !!} {!! add_help('Enter a name for the wishlist.') !!} {!! Form::text('name', $wishlist->name, ['class' => 'form-control', 'required']) !!}
{!! Form::submit('Submit', ['class' => 'btn btn-success']) !!}
{!! Form::close() !!} @else

Invalid wishlist selected.

@endif